in component-test/src/main/java/org/apache/fineract/cn/office/TestEmployee.java [264:276]
public void shouldNotSetContactDetailEmployeeNotFound() throws Exception {
final ContactDetail contactDetail = new ContactDetail();
contactDetail.setType(ContactDetail.Type.EMAIL.name());
contactDetail.setGroup(ContactDetail.Group.BUSINESS.name());
contactDetail.setValue("employee@example.com");
try {
this.organizationManager.setContactDetails(RandomStringUtils.randomAlphanumeric(8), Collections.singletonList(contactDetail));
Assert.fail();
} catch (final NotFoundException ex) {
// do nothing, expected
}
}