assertTrue(out.toString().contains("trackedProperty"));
FlatPackEntity<PersistentEmployee> entity = flatpack.getUnpacker()
.unpack(PersistentEmployee.class, new StringReader(out.toString()), null);
PersistentEmployee e2 = entity.getValue();
assertTrue(e2.wasPersistent());
assertTrue(e2.dirtyPropertyNames().isEmpty());
}
/**
* Just make sure the test resolver is capturing data correctly.