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