Aspects.Logging.Tests.Loggers.ConsoleLoggerTests.WhenCallingErrorShouldEnterErrorMethod C# (CSharp) Method

WhenCallingErrorShouldEnterErrorMethod() private method

private WhenCallingErrorShouldEnterErrorMethod ( ) : void
return void
        public void WhenCallingErrorShouldEnterErrorMethod()
        {
            ConsoleLogger logger = new ConsoleLogger();

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