Uses of Class
org.fest.assertions.api.FloatAssert
Packages that use FloatAssert
-
Uses of FloatAssert in org.fest.assertions.api
Methods in org.fest.assertions.api that return FloatAssertModifier and TypeMethodDescriptionstatic FloatAssert
Assertions.assertThat
(float actual) Creates a new instance of
.FloatAssert
static FloatAssert
Assertions.assertThat
(Float actual) Creates a new instance of
.FloatAssert
FloatAssert.isEqualTo
(float expected) Verifies that the actual value is equal to the given one.Verifies that the actual value is equal to the given one, within a positive offset.Verifies that the actual value is equal to the given one, within a positive offset.FloatAssert.isGreaterThan
(float other) Verifies that the actual value is greater than the given one.FloatAssert.isGreaterThanOrEqualTo
(float other) Verifies that the actual value is greater than or equal to the given one.FloatAssert.isLessThan
(float other) Verifies that the actual value is less than the given one.FloatAssert.isLessThanOrEqualTo
(float other) Verifies that the actual value is less than or equal to the given one.FloatAssert.isNaN()
Verifies that the actual value is equal toNaN
.FloatAssert.isNegative()
Verifies that the actual value is negative.FloatAssert.isNotEqualTo
(float other) Verifies that the actual value is not equal to the given one.FloatAssert.isNotNaN()
Verifies that the actual value is not equal toNaN
.FloatAssert.isNotNegative()
Verifies that the actual value is non negative (positive or equal zero).FloatAssert.isNotPositive()
Verifies that the actual value is non positive (negative or equal zero).FloatAssert.isNotZero()
Verifies that the actual value is not equal to zero.FloatAssert.isPositive()
Verifies that the actual value is positive.FloatAssert.isZero()
Verifies that the actual value is equal to zero.FloatAssert.usingComparator
(Comparator<? super Float> customComparator) FloatAssert.usingDefaultComparator()