Lines Matching refs:upper
1790 * than ``upper`` but not equal to either.
1794 * @param {number} upper - Number that ``actual`` must be less than.
1797 function assert_between_exclusive(actual, lower, upper, description)
1807 assert(actual > lower && actual < upper,
1810 "and less than ${upper} but got ${actual}",
1811 {lower:lower, upper:upper, actual:actual});
1867 * than or equal to ``upper``.
1871 * @param {number} upper - Number that ``actual`` must be less than or equal to.
1874 function assert_between_inclusive(actual, lower, upper, description)
1884 assert(actual >= lower && actual <= upper,
1887 "and less than or equal to ${upper} but got ${actual}",
1888 {lower:lower, upper:upper, actual:actual});