LAST time, rupertrutland, /dev/urandom IS NOT a variable name generator...

This commit is contained in:
2025-05-26 14:18:43 +03:00
commit 585e965211
24 changed files with 1397 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
package com.demo;
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 JsonEchoTest {
@Test
void testHelloEndpoint() {
given()
.when().get("/hello")
.then()
.statusCode(200)
.body(is("Hello from Quarkus REST"));
}
}