We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f546e2e commit d3c019eCopy full SHA for d3c019e
src/test/java/com/github/shyiko/mysql/binlog/BinaryLogClientIntegrationTest.java
@@ -833,6 +833,12 @@ public void testExceptionIsThrownWhenTryingToConnectAlreadyConnectedClient() thr
833
client.connect();
834
}
835
836
+ @Test(expectedExceptions = IOException.class)
837
+ public void testExceptionIsThrownWhenTryingToConnectAlreadyConnectedClientWithTimeout() throws Exception {
838
+ assertTrue(client.isConnected());
839
+ client.connect(1000);
840
+ }
841
+
842
@Test
843
public void testExceptionIsThrownWhenProvidedWithWrongCredentials() throws Exception {
844
BinaryLogClient binaryLogClient =
0 commit comments