AndConstraint - jnm2/nunit-docs-wiki GitHub Wiki
AndConstraint combines two other constraints and succeeds only if they both succeed.
AndConstraint(Constraint left, Constraint right)
<Constraint>.And.<Constraint>
Assert.That(2.3, Is.GreaterThan(2.0).And.LessThan(3.0));