@Test
public void testCountDown() throws IOException {
ICountDownLatch countDownLatch = getCountDownLatch();
countDownLatch.trySetCount(1);
final SimpleClient client = getClient();
client.send(new CountDownRequest(name));
client.receive();
assertEquals(0, countDownLatch.getCount());
}