use of com.yahoo.jdisc.service.ClientProvider in project vespa by vespa-engine.
the class NonWorkingClientTestCase method requireThatHandleTimeoutThrowsException.
@Test
public void requireThatHandleTimeoutThrowsException() {
ClientProvider client = new NonWorkingClientProvider();
try {
client.handleTimeout(null, null);
fail();
} catch (UnsupportedOperationException e) {
}
}
use of com.yahoo.jdisc.service.ClientProvider in project vespa by vespa-engine.
the class NonWorkingClientTestCase method requireThatStartDoesNotThrow.
@Test
public void requireThatStartDoesNotThrow() {
ClientProvider client = new NonWorkingClientProvider();
client.start();
}
Aggregations