package com.lanternbay;import io.quarkus.test.junit.QuarkusTest;import org.junit.jupiter.api.Test;import static io.restassured.RestAssured.given;import static org.hamcrest.CoreMatchers.is;@QuarkusTestclass GreetingResourceTest {@Testvoid testHelloEndpoint() {given().when().get("/hello").then().statusCode(200).body(is("Hello RESTEasy"));}}