public void test032_create_entity() {
try {
Schema schema = db.getSchemas("foo schema").iterator().next();
UpdatableChronicle ent = db.getTopChronicle().edit().createChronicle("fooent", false, "foo entity", null, schema);
ent.getAttribute("foo property", true);
ent.applyUpdates();
assertNotNull(ent.getAttribute("foo property", false));
assertNull(ent.getAttribute("bar property", false));
} catch (Exception e) {
fail(e.getMessage());
}