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

InformationEventWithCallerIdAndCorrelationIdIsWrittenToLog() private method

        public void InformationEventWithCallerIdAndCorrelationIdIsWrittenToLog()
        {
            correlation.CorrelationId.Returns(CorrelationId);
            correlation.CallerId.Returns(CallerId);
            sut.LogInformation(correlation, Message, MessageParams);

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