Now removed code for real

This commit is contained in:
2025-05-21 12:17:45 +03:00
parent 2ef090f31c
commit c2e9c08297
12 changed files with 0 additions and 1030 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"));
}
}