Returns a matcher which matches if the match argument is greater than low and less than or equal to high.
low
high
Matcher inOpenClosedRange(num low, num high) => new _InRange(low, high, false, true);