use of org.neo4j.ogm.domain.gh806.IElementImpl1A in project neo4j-ogm by neo4j.
the class HierarchyRelsTest method relationshipsToSubclassesShouldBeClearedAsWell.
// GH-806
@Test
public void relationshipsToSubclassesShouldBeClearedAsWell() {
inheritanceImpl(s -> new Element(s), Container::setElement);
inheritanceImpl(s -> new ConcreteElement(s), Container::setElement);
inheritanceImpl(s -> new VeryConcreteElementA(s), Container::setElement);
inheritanceImpl(s -> new EvenMoreConcreteElement(s), Container::setElement);
inheritanceImpl(s -> new IElementImpl1(s), Container::setElement2);
inheritanceImpl(s -> new IElementImpl1A(s), Container::setElement2);
}
Aggregations