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

InformationEventWithCorrelationIdIsWrittenToLog() private method

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

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