use of eu.europa.ec.fisheries.ers.fa.entities.ContactPartyRoleEntity in project UVMS-ActivityModule-APP by UnionVMS.
the class ContactPartyMapperTest method testContactPartyMapperNullReturns.
@Test
public void testContactPartyMapperNullReturns() {
Set<ContactPartyRoleEntity> contactPartyRoles = ContactPartyMapper.INSTANCE.getContactPartyRoles(null, new ContactPartyEntity());
assertTrue(contactPartyRoles.size() == 0);
ContactPersonEntity contactPersonEntity = ContactPartyMapper.INSTANCE.getContactPersonEntity(null, new ContactPartyEntity());
assertNull(contactPersonEntity);
Set<StructuredAddressEntity> structuredAddressEntity = ContactPartyMapper.INSTANCE.getStructuredAddressEntity(null, new ContactPartyEntity());
assertTrue(structuredAddressEntity.size() == 0);
}
Aggregations