public void TestLogExceptionShouldLogError()
        {
            var ex = new Exception();

            _logger.LogException(ex);
            _mockLog.Verify(p => p.Error(ex), Times.Once());
        }