volvox/service-td/src/test/java/io/volvox/td/TdResourceTest.java

21 lines
420 B
Java
Raw Normal View History

2021-11-10 01:13:31 +01:00
package io.volvox.td;
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
public class TdResourceTest {
@Test
public void testEmptyList() {
given()
.when().get("/api/td/list")
.then()
.statusCode(200)
.body(is(""));
}
}