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