use of org.nhindirect.common.audit.impl.LoggingAuditor in project nhin-d by DirectProject.
the class AuditorFactoryTest method testCreateAuditor_SingleProvider_AssertCreatedAuditor.
@Test
public void testCreateAuditor_SingleProvider_AssertCreatedAuditor() throws Exception {
LoggingAuditorProvider proviver = new LoggingAuditorProvider();
Auditor auditor = AuditorFactory.createAuditor(proviver);
assertNotNull(auditor);
assertTrue(auditor instanceof LoggingAuditor);
}
Aggregations