lessThan function

Matcher lessThan (dynamic value)

Returns a matcher which matches if the match argument is less than the given value.

Implementation

Matcher lessThan(value) =>
    new _OrderingMatcher(value, false, true, false, 'a value less than');