com.datastax.driver.core.exceptions.OperationTimedOutException Java Examples

The following examples show how to use com.datastax.driver.core.exceptions.OperationTimedOutException. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ErrorResultIntegrationTest.java    From simulacron with Apache License 2.0 5 votes vote down vote up
@Test
public void testShouldReturnClientTimeout() throws Exception {
  server.prime(when(query));

  thrown.expect(OperationTimedOutException.class);
  query(new SimpleStatement(query).setReadTimeoutMillis(1000));
}
 
Example #2
Source File: ErrorResultIntegrationTest.java    From simulacron with Apache License 2.0 4 votes vote down vote up
@Test
public void testShouldReturnClientTimeoutWhenUsingNoResult() throws Exception {
  server.prime(when(query).then(noResult()));
  thrown.expect(OperationTimedOutException.class);
  query(new SimpleStatement(query).setReadTimeoutMillis(1000));
}