use of org.estatio.module.party.dom.relationship.PartyRelationship in project estatio by estatio.
the class PartyRelationshipType_Test method createFor.
@Test
public void createFor() {
Person p = new Person();
Organisation o = new Organisation();
PartyRelationship pr = PartyRelationshipTypeEnum.createWithToTitle(o, p, PartyRelationshipTypeEnum.EMPLOYMENT.toTitle());
assertThat((Organisation) pr.getFrom()).isEqualTo(o);
}
Aggregations