7778798081828384
} } public void mustBeGreaterThan(double arg, double lowerLimit) { if (arg <= lowerLimit) { throw new JUnitHelperCoreException(name + " must not be greater than " + lowerLimit + "."); } }
8384858687888990
} } public void mustBeGreaterThanOrEqual(double arg, double lowerLimit) { if (arg < lowerLimit) { throw new JUnitHelperCoreException(name + " must not be greater than or equal " + lowerLimit + "."); } }
8990919293949596
} } public void mustBeLessThan(double arg, double upperLimit) { if (arg >= upperLimit) { throw new JUnitHelperCoreException(name + " must not be less than " + upperLimit + "."); } }
9596979899100101102
} } public void mustBeLessThanOrEqual(double arg, double upperLimit) { if (arg > upperLimit) { throw new JUnitHelperCoreException(name + " must not be less than or equal " + upperLimit + "."); } }