static LongAssert |
Assertions.assertThat(long actual) |
|
static LongAssert |
Assertions.assertThat(java.lang.Long actual) |
|
LongAssert |
LongAssert.isEqualTo(long expected) |
Verifies that the actual value is equal to the given one.
|
LongAssert |
LongAssert.isGreaterThan(long other) |
Verifies that the actual value is greater than the given one.
|
LongAssert |
LongAssert.isGreaterThanOrEqualTo(long other) |
Verifies that the actual value is greater than or equal to the given one.
|
LongAssert |
LongAssert.isLessThan(long other) |
Verifies that the actual value is less than the given one.
|
LongAssert |
LongAssert.isLessThanOrEqualTo(long other) |
Verifies that the actual value is less than or equal to the given one.
|
LongAssert |
LongAssert.isNegative() |
Verifies that the actual value is negative.
|
LongAssert |
LongAssert.isNotEqualTo(long other) |
Verifies that the actual value is not equal to the given one.
|
LongAssert |
LongAssert.isNotNegative() |
Verifies that the actual value is non negative (positive or equal zero).
|
LongAssert |
LongAssert.isNotPositive() |
Verifies that the actual value is non positive (negative or equal zero).
|
LongAssert |
LongAssert.isNotZero() |
Verifies that the actual value is not equal to zero.
|
LongAssert |
LongAssert.isPositive() |
Verifies that the actual value is positive.
|
LongAssert |
LongAssert.isZero() |
Verifies that the actual value is equal to zero.
|
LongAssert |
LongAssert.usingComparator(java.util.Comparator<? super java.lang.Long> customComparator) |
|
LongAssert |
LongAssert.usingDefaultComparator() |
|