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

#IsGreaterThan

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

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