assertTrue(serverConnectionListener.throwable instanceof ClientDisconnectedException);
assertTrue(clientConnectionListener.notified);
assertTrue(clientConnectionListener.throwable instanceof Exception);
assertEquals("Could not connect to server!", ((Exception)clientConnectionListener.throwable).getMessage());
client.removeConnectionListener(clientConnectionListener);
client.disconnect();
shutdownServer();
log.info(getName() + " PASSES");
}