Review Build time (#16444)

This commit is contained in:
Harry9656
2024-04-20 13:08:21 +02:00
committed by GitHub
parent 979f4ffb2c
commit 8b62a51599
12 changed files with 13 additions and 13 deletions
@@ -7,7 +7,7 @@ import static io.restassured.RestAssured.given;
import static org.hamcrest.CoreMatchers.is;
@QuarkusTest
public class HelloResourceUnitTest {
public class HelloResourceLongRunningUnitTest {
@Test
public void testHelloEndpoint() {
@@ -6,7 +6,7 @@ import io.quarkus.test.junit.QuarkusIntegrationTest;
@QuarkusIntegrationTest
@QuarkusTestResource(H2DatabaseTestResource.class)
public class NativeHelloResourceIT extends HelloResourceUnitTest {
public class NativeHelloResourceIT extends HelloResourceLongRunningUnitTest {
// Execute the same tests but in native mode.
}
@@ -14,7 +14,7 @@ import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.mockito.Mockito.when;
@QuarkusTest
class LibraryServiceInjectMockUnitTest {
class LibraryServiceInjectMockLongRunningUnitTest {
@Inject
LibraryService libraryService;
@@ -15,7 +15,7 @@ import java.util.Arrays;
import static org.junit.jupiter.api.Assertions.assertEquals;
@QuarkusTest
class LibraryServiceQuarkusMockUnitTest {
class LibraryServiceQuarkusMockLongRunningUnitTest {
@Inject
LibraryService libraryService;