Package org.fest.assertions.api
Class BigDecimalAssert
- java.lang.Object
-
- org.fest.assertions.api.AbstractAssert<S,A>
-
- org.fest.assertions.api.AbstractComparableAssert<S,A>
-
- org.fest.assertions.api.AbstractUnevenComparableAssert<BigDecimalAssert,java.math.BigDecimal>
-
- org.fest.assertions.api.BigDecimalAssert
-
- All Implemented Interfaces:
Assert<BigDecimalAssert,java.math.BigDecimal>,ComparableAssert<BigDecimalAssert,java.math.BigDecimal>,Descriptable<BigDecimalAssert>,ExtensionPoints<BigDecimalAssert,java.math.BigDecimal>,NumberAssert<java.math.BigDecimal>,UnevenComparableAssert<BigDecimalAssert,java.math.BigDecimal>
public class BigDecimalAssert extends AbstractUnevenComparableAssert<BigDecimalAssert,java.math.BigDecimal> implements NumberAssert<java.math.BigDecimal>
Assertion methods fors.BigDecimalTo create an instance of this class, invoke
.Assertions.assertThat(BigDecimal)- Author:
- David DIDIER, Ted M. Young, Yvonne Wang, Alex Ruiz, Joel Costigliola, Mikhail Mazursky
-
-
Field Summary
-
Fields inherited from class org.fest.assertions.api.AbstractAssert
actual, myself
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedBigDecimalAssert(java.math.BigDecimal actual)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BigDecimalAssertisEqualByComparingTo(java.lang.String expected)Same asisEqualByComparingTo(BigDecimal)but takes care of converting given String toBigDecimalfor you.BigDecimalAssertisEqualTo(java.lang.String expected)Same asisEqualTo(BigDecimal)but takes care of converting given String toBigDecimalfor you.BigDecimalAssertisNegative()Verifies that the actual value is negative.BigDecimalAssertisNotNegative()Verifies that the actual value is non negative (positive or equal zero).BigDecimalAssertisNotPositive()Verifies that the actual value is non positive (negative or equal zero).BigDecimalAssertisNotZero()Verifies that the actual value is not equal to zero.BigDecimalAssertisPositive()Verifies that the actual value is positive.BigDecimalAssertisZero()Verifies that the actual value is equal to zero.BigDecimalAssertusingComparator(java.util.Comparator<? super java.math.BigDecimal> customComparator)Use given custom comparator instead of relying on actual type A equals method for incoming assertion checks.BigDecimalAssertusingDefaultComparator()Revert to standard comparison for incoming assertion checks.-
Methods inherited from class org.fest.assertions.api.AbstractUnevenComparableAssert
isEqualByComparingTo, isNotEqualByComparingTo
-
Methods inherited from class org.fest.assertions.api.AbstractComparableAssert
isGreaterThan, isGreaterThanOrEqualTo, isLessThan, isLessThanOrEqualTo
-
Methods inherited from class org.fest.assertions.api.AbstractAssert
as, as, describedAs, describedAs, descriptionText, doesNotHave, doesNotHaveSameClassAs, equals, getWritableAssertionInfo, has, hashCode, hasSameClassAs, is, isEqualTo, isExactlyInstanceOf, isIn, isIn, isInstanceOf, isInstanceOfAny, isNot, isNotEqualTo, isNotExactlyInstanceOf, isNotIn, isNotIn, isNotInstanceOf, isNotInstanceOfAny, isNotNull, isNotOfAnyClassIn, isNotSameAs, isNull, isOfAnyClassIn, isSameAs, overridingErrorMessage
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.fest.assertions.core.ComparableAssert
isGreaterThan, isGreaterThanOrEqualTo, isLessThan, isLessThanOrEqualTo
-
-
-
-
Method Detail
-
isZero
public BigDecimalAssert isZero()
Verifies that the actual value is equal to zero.- Specified by:
isZeroin interfaceNumberAssert<java.math.BigDecimal>- Returns:
- this assertion object.
-
isNotZero
public BigDecimalAssert isNotZero()
Verifies that the actual value is not equal to zero.- Specified by:
isNotZeroin interfaceNumberAssert<java.math.BigDecimal>- Returns:
- this assertion object.
-
isPositive
public BigDecimalAssert isPositive()
Verifies that the actual value is positive.- Specified by:
isPositivein interfaceNumberAssert<java.math.BigDecimal>- Returns:
- this assertion object.
-
isNegative
public BigDecimalAssert isNegative()
Verifies that the actual value is negative.- Specified by:
isNegativein interfaceNumberAssert<java.math.BigDecimal>- Returns:
- this assertion object.
-
isNotPositive
public BigDecimalAssert isNotPositive()
Verifies that the actual value is non positive (negative or equal zero).- Specified by:
isNotPositivein interfaceNumberAssert<java.math.BigDecimal>- Returns:
thisassertion object.
-
isNotNegative
public BigDecimalAssert isNotNegative()
Verifies that the actual value is non negative (positive or equal zero).- Specified by:
isNotNegativein interfaceNumberAssert<java.math.BigDecimal>- Returns:
thisassertion object.
-
isEqualTo
public BigDecimalAssert isEqualTo(java.lang.String expected)
Same asisEqualTo(BigDecimal)but takes care of converting given String toBigDecimalfor you.
-
isEqualByComparingTo
public BigDecimalAssert isEqualByComparingTo(java.lang.String expected)
Same asisEqualByComparingTo(BigDecimal)but takes care of converting given String toBigDecimalfor you.
-
usingComparator
public BigDecimalAssert usingComparator(java.util.Comparator<? super java.math.BigDecimal> customComparator)
Description copied from class:AbstractAssertUse given custom comparator instead of relying on actual type A equals method for incoming assertion checks.Custom comparator is bound to assertion instance, meaning that if a new assertion is created, it will use default comparison strategy.
Examples :
// frodo and sam are instances of Character with Hobbit race (obviously :). // raceComparator implements Comparator<Character> assertThat(frodo).usingComparator(raceComparator).isEqualTo(sam);
- Specified by:
usingComparatorin interfaceAssert<BigDecimalAssert,java.math.BigDecimal>- Overrides:
usingComparatorin classAbstractComparableAssert<BigDecimalAssert,java.math.BigDecimal>- Parameters:
customComparator- the comparator to use for incoming assertion checks.- Returns:
thisassertion object.
-
usingDefaultComparator
public BigDecimalAssert usingDefaultComparator()
Description copied from class:AbstractAssertRevert to standard comparison for incoming assertion checks.This method should be used to disable a custom comparison strategy set by calling
Assert.usingComparator(Comparator).- Specified by:
usingDefaultComparatorin interfaceAssert<BigDecimalAssert,java.math.BigDecimal>- Overrides:
usingDefaultComparatorin classAbstractComparableAssert<BigDecimalAssert,java.math.BigDecimal>- Returns:
thisassertion object.
-
-