GreaterThanConstraint
Tests whether a value is greater than the value supplied to its constructor
namespace NUnit.Framework.Constraints
{
public class GreaterThanConstraint : ComparisonConstraint
{
public GreaterThanConstraint(object expected)
: base(expected, false, false, true, "greater than")
{
}
}
}