Matcher lessThanOrEqualTo(value)

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

Source

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