use of org.nhindirect.common.audit.impl.NoOpAuditor in project nhin-d by DirectProject.
the class MultiProviderAuditorTest method testAuditWithContext.
@Test
public void testAuditWithContext() {
Auditor auditor = new MultiProviderAuditor(Arrays.asList(new LoggingAuditor(), new NoOpAuditor()));
Collection<? extends AuditContext> ctx = Arrays.asList(new DefaultAuditContext("name", "value"));
auditor.audit(PRINCIPAL, UNIT_TEST_EVENT, ctx);
}
use of org.nhindirect.common.audit.impl.NoOpAuditor in project nhin-d by DirectProject.
the class AuditorFactoryTest method testCreateAuditor_SingleSPIImplementation_AssertCreatedSPIAuditor.
@Test
public void testCreateAuditor_SingleSPIImplementation_AssertCreatedSPIAuditor() throws Exception {
setupSPIImplementation(NoOpAuditor.class);
Auditor auditor = AuditorFactory.createAuditor();
assertNotNull(auditor);
assertTrue(auditor instanceof NoOpAuditor);
}
Aggregations