Rename unit test to follow naming standards

This commit is contained in:
Rodrigo Graciano 2019-07-25 22:14:58 -04:00
parent 0d7a1747cc
commit 8358d5b2ec
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ import static io.restassured.RestAssured.given;
import static org.hamcrest.CoreMatchers.is;
@QuarkusTest
public class HelloResourceTest {
public class HelloResourceUnitTest {
@Test
public void testHelloEndpoint() {

View File

@ -3,7 +3,7 @@ package com.baeldung.quarkus;
import io.quarkus.test.junit.SubstrateTest;
@SubstrateTest
public class NativeHelloResourceIT extends HelloResourceTest {
public class NativeHelloResourceIT extends HelloResourceUnitTest {
// Execute the same tests but in native mode.
}