public void theMachinethatGoesPing() throws InterruptedException, ExecutionException
{
PingOperation ping = new PingOperation();
cluster.execute(ping);
ping.await();
assertTrue(ping.isSuccess());
}
@Test
public void theMachineThatDoesntGoPing() throws UnknownHostException, InterruptedException