public void BaseAssertFluentWithSyntaxHelperLt() { Int32 obj = 42; FluentAssert.That(obj, Is.LesserThan(43)); }
public void BaseAssertFluentWithSyntaxHelperGt() { Int32 obj = 42; FluentAssert.That(obj, Is.GreaterThan(41)); }
public void BaseAssertFluentWithSyntaxHelper() { Int32 obj = 42; FluentAssert.That(obj, Is.EqualsTo(42)); }
public void BaseAssertFluent() { Int32 obj = 42; FluentAssert.That(obj, new EqualsConstraint(42)); }
public void BaseAssertFluentWithSyntaxHelperLtOrGtNoWay() { Int32 obj = 150; FluentAssert.That(obj, Is.LesserThan(200).And.GreaterThan(100)); }
public void BaseAssertFluentWithSyntaxHelperLtOrGtR() { Int32 obj = 400; FluentAssert.That(obj, Is.LesserThan(100).Or.GreaterThan(200)); }