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