Skip to content
grahamrhay edited this page Dec 18, 2010 · 1 revision

#IsLessThan

Matches if an object is less than another (must implement IComparable):

    [Test]
    public void IsEqual()
    {
        Assert.That(2, Is.LessThan(3));
    }
Clone this wiki locally