use of io.helidon.webserver.testsupport.TestResponse in project helidon by oracle.
the class StaticContentTest method testFavicon.
@Test
void testFavicon() throws TimeoutException, InterruptedException {
TestResponse testResponse = testClient.path("/classpath/favicon.ico").get();
assertThat(testResponse.status(), is(Http.Status.OK_200));
}
Aggregations