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