fact().register(PartiallyIndexedEntity.class);
fact().register(PartiallyIndexedStructSubclass.class);
PartiallyIndexedEntity obj = new PartiallyIndexedEntity(
new PartiallyIndexedStructSubclass(
new Someone(new Name("A", "B"), 30),
new Someone(new Name("C", "D"), 31), "1", "2"),
new PartiallyIndexedStructSubclass(
new Someone(new Name("a", "b"), 32),
new Someone(new Name("c", "d"), 33), "3", "4")
);
checkUnindexed(obj);
}