Removed code.

This commit is contained in:
2025-05-22 11:25:10 +03:00
parent 5c3af2abb3
commit 8ca8ab509d
15 changed files with 0 additions and 1144 deletions
-8
View File
@@ -1,8 +0,0 @@
package com.example;
import io.quarkus.test.junit.QuarkusIntegrationTest;
@QuarkusIntegrationTest
class ExampleIT extends ExampleTest {
// Execute the same tests but in packaged mode.
}
@@ -1,20 +0,0 @@
package com.example;
import io.quarkus.test.junit.QuarkusTest;
import org.junit.jupiter.api.Test;
import static io.restassured.RestAssured.given;
import static org.hamcrest.CoreMatchers.is;
@QuarkusTest
class ExampleTest {
@Test
void testHelloEndpoint() {
given()
.when().get("/hello")
.then()
.statusCode(200)
.body(is("Hello from Quarkus REST"));
}
}