コード例 #1
0
        public void feature()
        {
            IAuditor auditor = AuditorFactory.create();

            auditor.log("feature was called.");
        }
コード例 #2
0
        public void object_is_created()
        {
            IAuditor auditor = AuditorFactory.create();

            Assert.Equal("Company.Example.FileSystemAuditor", auditor.GetType().ToString());
        }