“Fleentasseritions wymusza wyjątki” Kod odpowiedzi

Fleentasseritions wymusza wyjątki

subject.Invoking(y => y.Foo("Hello"))
    .Should().Throw<InvalidOperationException>()
    .WithMessage("Hello is not allowed at this moment");
Magnificent Macaque

Fleentasseritions wymusza wyjątki


[Test]
public void GreaterThan_NullAsRhs_ThrowsException()
{
    var lhs = new ClassWithOverriddenOperator();
    var rhs = (ClassWithOverriddenOperator) null;

    Action comparison = () => { var res = lhs > rhs; };

    comparison.Should().Throw<Exception>();
}

Relieved Raven

Odpowiedzi podobne do “Fleentasseritions wymusza wyjątki”

Pytania podobne do “Fleentasseritions wymusza wyjątki”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu