use of org.apache.cayenne.map.Relationship in project cayenne by apache.
the class RelationshipEventTest method testRelationship.
@Test
public void testRelationship() throws Exception {
Object src = new Object();
Relationship r = new DbRelationship();
r.setName("xyz");
RelationshipEvent e = new RelationshipEvent(src, null, null);
e.setRelationship(r);
assertSame(r, e.getRelationship());
}
Aggregations