A
Size: a a a
ES
// Assert
var exception = formatter.Invoking(x => x.Format(logEvent, output))
.Should().Throw<ArgumentOutOfRangeException>()
.WithMessage("This LogEventLevel isn't supported");
exception.And.ActualValue.Should().Be(actualLevel);
exception.And.ParamName.Should().Be(nameof(logEvent));
V
EZ
// Assert
var exception = formatter.Invoking(x => x.Format(logEvent, output))
.Should().Throw<ArgumentOutOfRangeException>()
.WithMessage("This LogEventLevel isn't supported");
exception.And.ActualValue.Should().Be(actualLevel);
exception.And.ParamName.Should().Be(nameof(logEvent));
GB
A
IC
IC
IC
IC
VL
A