Package | Description |
---|---|
org.fest.assertions.api |
Modifier and Type | Method and Description |
---|---|
static BigDecimalAssert |
Assertions.assertThat(BigDecimal actual)
Creates a new instance of
. |
BigDecimalAssert |
BigDecimalAssert.isEqualByComparingTo(String expected)
Same as
isEqualByComparingTo(BigDecimal) but takes
care of converting given String to BigDecimal for you. |
BigDecimalAssert |
BigDecimalAssert.isEqualTo(String expected)
Same as
isEqualTo(BigDecimal) but takes care of converting given String to
BigDecimal for you. |
BigDecimalAssert |
BigDecimalAssert.isNegative()
Verifies that the actual value is negative.
|
BigDecimalAssert |
BigDecimalAssert.isNotNegative()
Verifies that the actual value is non negative (positive or equal zero).
|
BigDecimalAssert |
BigDecimalAssert.isNotPositive()
Verifies that the actual value is non positive (negative or equal zero).
|
BigDecimalAssert |
BigDecimalAssert.isNotZero()
Verifies that the actual value is not equal to zero.
|
BigDecimalAssert |
BigDecimalAssert.isPositive()
Verifies that the actual value is positive.
|
BigDecimalAssert |
BigDecimalAssert.isZero()
Verifies that the actual value is equal to zero.
|
BigDecimalAssert |
BigDecimalAssert.usingComparator(Comparator<? super BigDecimal> customComparator) |
BigDecimalAssert |
BigDecimalAssert.usingDefaultComparator() |
Copyright © 2007–2014. All rights reserved.