beAbove method

NumericAssertions beAbove(
  1. num expected
)

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

expected The value to compare the current numeric value with.

Implementation

NumericAssertions beAbove(num expected) {
  return beGreaterThan(expected);
}