static FloatAssert |
Assertions.assertThat(float actual) |
|
static FloatAssert |
Assertions.assertThat(java.lang.Float actual) |
|
FloatAssert |
FloatAssert.isEqualTo(float expected) |
Verifies that the actual value is equal to the given one.
|
FloatAssert |
FloatAssert.isEqualTo(float expected,
Offset<java.lang.Float> offset) |
Verifies that the actual value is equal to the given one, within a positive offset.
|
FloatAssert |
FloatAssert.isEqualTo(java.lang.Float expected,
Offset<java.lang.Float> offset) |
Verifies that the actual value is equal to the given one, within a positive offset.
|
FloatAssert |
FloatAssert.isGreaterThan(float other) |
Verifies that the actual value is greater than the given one.
|
FloatAssert |
FloatAssert.isGreaterThanOrEqualTo(float other) |
Verifies that the actual value is greater than or equal to the given one.
|
FloatAssert |
FloatAssert.isLessThan(float other) |
Verifies that the actual value is less than the given one.
|
FloatAssert |
FloatAssert.isLessThanOrEqualTo(float other) |
Verifies that the actual value is less than or equal to the given one.
|
FloatAssert |
FloatAssert.isNaN() |
Verifies that the actual value is equal to NaN .
|
FloatAssert |
FloatAssert.isNegative() |
Verifies that the actual value is negative.
|
FloatAssert |
FloatAssert.isNotEqualTo(float other) |
Verifies that the actual value is not equal to the given one.
|
FloatAssert |
FloatAssert.isNotNaN() |
Verifies that the actual value is not equal to NaN .
|
FloatAssert |
FloatAssert.isNotNegative() |
Verifies that the actual value is non negative (positive or equal zero).
|
FloatAssert |
FloatAssert.isNotPositive() |
Verifies that the actual value is non positive (negative or equal zero).
|
FloatAssert |
FloatAssert.isNotZero() |
Verifies that the actual value is not equal to zero.
|
FloatAssert |
FloatAssert.isPositive() |
Verifies that the actual value is positive.
|
FloatAssert |
FloatAssert.isZero() |
Verifies that the actual value is equal to zero.
|
FloatAssert |
FloatAssert.usingComparator(java.util.Comparator<? super java.lang.Float> customComparator) |
|
FloatAssert |
FloatAssert.usingDefaultComparator() |
|