use of org.estatio.module.party.dom.role.PartyRoleTypeService in project estatio by estatio.
the class PartyRoleTypeService_Test method setUp.
@Before
public void setUp() throws Exception {
person1 = new Person();
person2 = new Person();
partyRoleTypeService = new PartyRoleTypeService() {
@Override
public List<Person> membersOf(final IPartyRoleType partyRoleType, final Object domainObject) {
return members;
}
};
}
Aggregations