// test getStat()
for (int i = 0; i < 10; i++)
{
String msgId = "msg_" + i;
String path = PropertyPathConfig.getPath(PropertyType.MESSAGES, root, "host_0", msgId);
Stat stat = accessor.getStat(path, 0);
Assert.assertNotNull(stat, "Stat should exist");
Assert.assertEquals(stat.getVersion(), 2, "DataVersion should be 2, since we set 1 and update 1");
}
// test sync remove
for (int i = 0; i < 10; i++)
{