BayeuxClient client1 = newBayeuxClient(servletPath1);
client1.handshake();
Assert.assertTrue(client1.waitFor(5000, BayeuxClient.State.CONNECTED));
BayeuxClient client2 = newBayeuxClient(servletPath2);
client2.handshake();
Assert.assertTrue(client2.waitFor(5000, BayeuxClient.State.CONNECTED));
String channelName = "/foobarbaz";
final CountDownLatch messageLatch = new CountDownLatch(4);
final CountDownLatch subscribeLatch = new CountDownLatch(2);