BudgetAnalyser.UnitTest.BudgetAnalyserLog4NetLoggerTest.LogAlwaysShouldLogWhenWarningLoggingIsDisabled C# (CSharp) Method

LogAlwaysShouldLogWhenWarningLoggingIsDisabled() private method

private LogAlwaysShouldLogWhenWarningLoggingIsDisabled ( ) : void
return void
        public void LogAlwaysShouldLogWhenWarningLoggingIsDisabled()
        {
            MockLogger.Setup(m => m.IsWarnEnabled).Returns(false);
            Subject.LogAlways(_ => "Foo");
            MockLogger.Verify(m => m.Info(It.IsAny<string>()));
        }