}
public void test_050() {
try {
UpdatableChronicle e = db.getTopChronicle().edit().createChronicle(SIMPLENAME, false, "junit test 001", null, null);
e.applyUpdates();
Attribute<?> a = e.getAttribute("foo", false);
assertNull(a);
a = e.getAttribute("bar", true);
expectException();
} catch (Exception e) {