public void feature() { IAuditor auditor = AuditorFactory.create(); auditor.log("feature was called."); }
public void object_is_created() { IAuditor auditor = AuditorFactory.create(); Assert.Equal("Company.Example.FileSystemAuditor", auditor.GetType().ToString()); }