Affecto.Logging.Tests.LoggerTests.WarningEventWithCorrelationIdIsWrittenToLog C# (CSharp) Method

WarningEventWithCorrelationIdIsWrittenToLog() private method

private WarningEventWithCorrelationIdIsWrittenToLog ( ) : void
return void
        public void WarningEventWithCorrelationIdIsWrittenToLog()
        {
            correlation.CorrelationId.Returns(CorrelationId);
            sut.LogWarning(correlation, Message, MessageParams);

            AssertCall(correlation, LogEventLevel.Warning, null, Message, MessageParams);
        }