Uses of Class
org.fest.assertions.api.BigDecimalAssert
Packages that use BigDecimalAssert
-
Uses of BigDecimalAssert in org.fest.assertions.api
Methods in org.fest.assertions.api that return BigDecimalAssertModifier and TypeMethodDescriptionstatic BigDecimalAssert
Assertions.assertThat
(BigDecimal actual) Creates a new instance of
.BigDecimalAssert
BigDecimalAssert.isEqualByComparingTo
(String expected) Same asisEqualByComparingTo(BigDecimal)
but takes care of converting given String toBigDecimal
for you.Same asisEqualTo(BigDecimal)
but takes care of converting given String toBigDecimal
for you.BigDecimalAssert.isNegative()
Verifies that the actual value is negative.BigDecimalAssert.isNotNegative()
Verifies that the actual value is non negative (positive or equal zero).BigDecimalAssert.isNotPositive()
Verifies that the actual value is non positive (negative or equal zero).BigDecimalAssert.isNotZero()
Verifies that the actual value is not equal to zero.BigDecimalAssert.isPositive()
Verifies that the actual value is positive.BigDecimalAssert.isZero()
Verifies that the actual value is equal to zero.BigDecimalAssert.usingComparator
(Comparator<? super BigDecimal> customComparator) BigDecimalAssert.usingDefaultComparator()