uc.applyUpdates();
String su1 = uc.getSurrogate().toString();
// access with "test" okay, because of non-strict mode
String su2 = db.getChronicle("test", true).getSurrogate().toString();
assertEquals(su1, su2);
uc.destroy();
uc.applyUpdates();
uc = db.getTopChronicle().edit().createChronicle("test", false, "testing...", null, null);
uc.applyUpdates();
// DON'T commit... old version of system removed things from cache on commit
String su3 = uc.getSurrogate().toString();