lessThan method

Return lessThan(
  1. num value
)

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

Implementation

Return lessThan(num value) {
  return runMatcher(dart_test.lessThan(value));
}