httpClient.get(server.getUrl(), IHttpClient.NO_TIMEOUT);
fail("Expected NotFoundException not thrown");
} catch (NotFoundException e) {
assertTrue(e.getMessage().contains(server.getUrl().toString()));
} finally {
server.stop();
}
}
@Test
public void shouldRespectGivenTimeoutPOST() throws Throwable {