public void ignore_null_properties_in_the_exception_output()
        {
            var exception = new ExceptionWithProperty2()
            {
                UserId = 10
            };

            var sut    = new BaseLoggerWrapper(GetType());
            var actual = sut.FormatException(exception);

            actual.Should().Be("    Griffin.Core.Tests.Logging.Loggers.ExceptionWithProperty2: Exception of type 'Griffin.Core.Tests.Logging.Loggers.ExceptionWithProperty2' was thrown.\r\n    [UserId='10']\r\n");
        }
        public void include_properties_in_the_exception_output()
        {
            var exception = new ExceptionWithProperty2()
            {
                UserId = 10, FirstName = "Arne"
            };

            var sut    = new BaseLoggerWrapper(GetType());
            var actual = sut.FormatException(exception);

            actual.Should().StartWith("    Griffin.Core.Tests.Logging.Loggers.ExceptionWithProperty2");
            actual.Should().EndWith("[UserId='10',FirstName='Arne']\r\n");
        }
        public void ignore_null_properties_in_the_exception_output()
        {
            var exception = new ExceptionWithProperty2() { UserId = 10};

            var sut = new BaseLoggerWrapper(GetType());
            var actual = sut.FormatException(exception);

            actual.Should().Be("    Griffin.Core.Tests.Logging.Loggers.ExceptionWithProperty2: Exception of type 'Griffin.Core.Tests.Logging.Loggers.ExceptionWithProperty2' was thrown.\r\n    [UserId='10']\r\n");
        }
        public void include_properties_in_the_exception_output()
        {
            var exception = new ExceptionWithProperty2() { UserId = 10, FirstName = "Arne"};

            var sut = new BaseLoggerWrapper(GetType());
            var actual = sut.FormatException(exception);

            actual.Should().Be("    Griffin.Tests.Logging.Loggers.ExceptionWithProperty2: Exception of type 'Griffin.Tests.Logging.Loggers.ExceptionWithProperty2' was thrown.\r\n    [UserId='10',FirstName='Arne']\r\n");
        }
        public void include_properties_in_the_exception_output()
        {
            var exception = new ExceptionWithProperty2() { UserId = 10, FirstName = "Arne"};

            var sut = new BaseLoggerWrapper(GetType());
            var actual = sut.FormatException(exception);

            actual.Should().StartWith("    Griffin.Core.Tests.Logging.Loggers.ExceptionWithProperty2");
            actual.Should().EndWith("[UserId='10',FirstName='Arne']\r\n");
        }