use of org.pentaho.platform.engine.core.audit.NullAuditEntry in project pentaho-platform by pentaho.
the class AuditEntryTest method testNullAuditEntry.
public void testNullAuditEntry() {
IAuditEntry auditEntry = new NullAuditEntry();
// this should not fail, even with all nulls as inputs
auditEntry.auditAll(null, null, null, null, null, null, null, null, null, 0.0);
}
Aggregations