cluster.addNode(node3);
cluster.start();
Assert.assertEquals(800, node2.log().firstIndex());
Entry firstEntry = node2.log().firstEntry();
Assert.assertTrue(firstEntry instanceof SnapshotEntry);
Assert.assertEquals("Hello world!", new String(((SnapshotEntry) firstEntry).data()));
cluster.stop();
}