lessThan function
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');
Returns a matcher which matches if the match argument is less
than the given value
.
Matcher lessThan(value) =>
new _OrderingMatcher(value, false, true, false, 'a value less than');