Merge pull request #7419 from rodrigolgraciano/BAEL-2877

Rename unit test to follow naming standards
This commit is contained in:
Eric Martin
2019-07-25 23:07:04 -05:00
committed by GitHub
2 changed files with 2 additions and 2 deletions
@@ -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() {
@@ -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.
}