@Test
public void responseTimeoutOverridesClientDriverRuleExpectationTimeout() throws InterruptedException {
// Given
final ClientDriverRule driver = new ClientDriverRule()
.expectResponsesWithin(5, TimeUnit.MINUTES);
final ClientDriverResponse response = giveResponse("", null);
// When
driver.addExpectation(
onRequestTo("/path"),
response.within(1, TimeUnit.MILLISECONDS));
Thread.sleep(5);