beBelow method

NumericAssertions beBelow(
  1. num expected
)

Asserts that the numeric value is less than the specified expected value.

expected The value to compare the current numeric value with.

Implementation

NumericAssertions beBelow(num expected) {
  return beLessThan(expected);
}