Aspects.Logging.Tests.Loggers.NullLoggerTests.WhenCallingErrorShouldEnterErrorMethod C# (CSharp) 메소드

WhenCallingErrorShouldEnterErrorMethod() 개인적인 메소드

private WhenCallingErrorShouldEnterErrorMethod ( ) : void
리턴 void
        public void WhenCallingErrorShouldEnterErrorMethod()
        {
            NullLogger logger = new NullLogger();

            logger.Error("Test String", new Exception());
        }