lessThanOrEqualTo function

Matcher lessThanOrEqualTo (dynamic value)

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

Implementation

Matcher lessThanOrEqualTo(value) => new _OrderingMatcher(
    value, true, true, false, 'a value less than or equal to');