greaterThan function
Returns a matcher which matches if the match argument is greater
than the given value
.
Implementation
Matcher greaterThan(value) =>
new _OrderingMatcher(value, false, false, true, 'a value greater than');
Returns a matcher which matches if the match argument is greater
than the given value
.
Matcher greaterThan(value) =>
new _OrderingMatcher(value, false, false, true, 'a value greater than');