Пример #1
0
 /**
  * Verifies that the actual value is less than the given one.
  *
  * @param other the given value to compare the actual value to.
  * @return {@code this} assertion object.
  * @throws AssertionError if the actual value is {@code null}.
  * @throws AssertionError if the actual value is equal to or greater than the given one.
  */
 public LongAssert isLessThan(long other) {
   longs.assertLessThan(info, actual, other);
   return this;
 }