lessThan function

Matcher lessThan(
  1. Object value
)

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

Implementation

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