lessThanOrEqualTo function

Matcher lessThanOrEqualTo(
  1. Object value
)

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

Implementation

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