Package org.assertj.core.api
Class AbstractBigIntegerAssert<SELF extends AbstractBigIntegerAssert<SELF>>
- java.lang.Object
-
- org.assertj.core.api.AbstractAssert<SELF,ACTUAL>
-
- org.assertj.core.api.AbstractObjectAssert<SELF,ACTUAL>
-
- org.assertj.core.api.AbstractComparableAssert<SELF,BigInteger>
-
- org.assertj.core.api.AbstractBigIntegerAssert<SELF>
-
- All Implemented Interfaces:
Assert<SELF,BigInteger>,ComparableAssert<SELF,BigInteger>,Descriptable<SELF>,ExtensionPoints<SELF,BigInteger>,NumberAssert<SELF,BigInteger>
- Direct Known Subclasses:
BigIntegerAssert
public class AbstractBigIntegerAssert<SELF extends AbstractBigIntegerAssert<SELF>> extends AbstractComparableAssert<SELF,BigInteger> implements NumberAssert<SELF,BigInteger>
Base class for all implementations of assertions forBigIntegers.- Since:
- 2.7.0 / 3.7.0
-
-
Field Summary
-
Fields inherited from class org.assertj.core.api.AbstractAssert
actual, info, myself
-
-
Constructor Summary
Constructors Constructor Description AbstractBigIntegerAssert(BigInteger actual, Class<?> selfType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SELFisBetween(BigInteger start, BigInteger end)Verifies that the actual value is in [start, end] range (start and end included).SELFisCloseTo(BigInteger expected, Offset<BigInteger> offset)Verifies that the actual number is close to the given one within the given offset.
If difference is equal to offset value, assertion is considered valid.SELFisCloseTo(BigInteger expected, Percentage percentage)Verifies that the actual number is close to the given one within the given percentage.
If difference is equal to the percentage value, assertion is considered valid.SELFisEqualTo(int expected)Same asisEqualTo(BigInteger)but takes care of converting given int toBigIntegerfor you.SELFisEqualTo(long expected)Same asisEqualTo(BigInteger)but takes care of converting given int toBigIntegerfor you.SELFisEqualTo(String expected)Same asisEqualTo(BigInteger)but takes care of converting given String toBigIntegerfor you.SELFisNegative()Verifies that the actual value is negative.SELFisNotCloseTo(BigInteger expected, Offset<BigInteger> offset)Verifies that the actual number is not close to the given one by less than the given offset.
If the difference is equal to the offset value, the assertion fails.SELFisNotCloseTo(BigInteger expected, Percentage percentage)Verifies that the actual number is not close to the given one by the given percentage.
If difference is equal to the percentage value, the assertion fails.SELFisNotNegative()Verifies that the actual value is non negative (positive or equal zero).SELFisNotPositive()Verifies that the actual value is non positive (negative or equal zero).SELFisNotZero()Verifies that the actual value is not equal to zero.SELFisOne()Verifies that the actual value is equal to one.SELFisPositive()Verifies that the actual value is positive.SELFisStrictlyBetween(BigInteger start, BigInteger end)Verifies that the actual value is in ]start, end[ range (start excluded, end excluded).SELFisZero()Verifies that the actual value is equal to zero.SELFusingComparator(Comparator<? super BigInteger> customComparator)Use given custom comparator instead of relying on actual type A equals method for incoming assertion checks.SELFusingDefaultComparator()Revert to standard comparison for incoming assertion checks.-
Methods inherited from class org.assertj.core.api.AbstractComparableAssert
inBinary, inHexadecimal, isEqualByComparingTo, isGreaterThan, isGreaterThanOrEqualTo, isLessThan, isLessThanOrEqualTo, isNotEqualByComparingTo
-
Methods inherited from class org.assertj.core.api.AbstractObjectAssert
as, as, defaultTypeComparators, extracting, extracting, hasFieldOrProperty, hasFieldOrPropertyWithValue, hasNoNullFieldsOrProperties, hasNoNullFieldsOrPropertiesExcept, isEqualToComparingFieldByField, isEqualToComparingFieldByFieldRecursively, isEqualToComparingOnlyGivenFields, isEqualToIgnoringGivenFields, isEqualToIgnoringNullFields, returns, usingComparatorForFields, usingComparatorForType
-
Methods inherited from class org.assertj.core.api.AbstractAssert
asList, asString, describedAs, describedAs, descriptionText, doesNotHave, doesNotHaveSameClassAs, equals, failWithMessage, getWritableAssertionInfo, has, hashCode, hasSameClassAs, hasToString, is, isEqualTo, isExactlyInstanceOf, isIn, isIn, isInstanceOf, isInstanceOfAny, isInstanceOfSatisfying, isNot, isNotEqualTo, isNotExactlyInstanceOf, isNotIn, isNotIn, isNotInstanceOf, isNotInstanceOfAny, isNotNull, isNotOfAnyClassIn, isNotSameAs, isNull, isOfAnyClassIn, isSameAs, matches, matches, overridingErrorMessage, satisfies, setCustomRepresentation, throwAssertionError, withFailMessage, withRepresentation, withThreadDumpOnError
-
-
-
-
Constructor Detail
-
AbstractBigIntegerAssert
public AbstractBigIntegerAssert(BigInteger actual, Class<?> selfType)
-
-
Method Detail
-
isZero
public SELF isZero()
Verifies that the actual value is equal to zero.Example:
// assertion will pass assertThat(BigInteger.ZERO).isZero(); // assertion will fail assertThat(new BigInteger("8")).isZero();- Specified by:
isZeroin interfaceNumberAssert<SELF extends AbstractBigIntegerAssert<SELF>,BigInteger>- Returns:
- this assertion object.
- Since:
- 2.7.0 / 3.7.0
-
isNotZero
public SELF isNotZero()
Verifies that the actual value is not equal to zero.Example:
// assertion will pass assertThat(new BigInteger("8")).isNotZero(); // assertion will fail assertThat(BigInteger.ZERO).isNotZero();- Specified by:
isNotZeroin interfaceNumberAssert<SELF extends AbstractBigIntegerAssert<SELF>,BigInteger>- Returns:
- this assertion object.
- Since:
- 2.7.0 / 3.7.0
-
isOne
public SELF isOne()
Verifies that the actual value is equal to one.Example:
// assertion will pass assertThat(BigInteger.ONE).isOne(); // assertion will fail assertThat(new BigInteger("8")).isOne();- Specified by:
isOnein interfaceNumberAssert<SELF extends AbstractBigIntegerAssert<SELF>,BigInteger>- Returns:
- this assertion object.
- Since:
- 2.7.0 / 3.7.0
-
isPositive
public SELF isPositive()
Verifies that the actual value is positive.Example:
// assertion will pass assertThat(new BigInteger("8")).isPositive(); // assertion will fail assertThat(new BigInteger("-8")).isPositive();- Specified by:
isPositivein interfaceNumberAssert<SELF extends AbstractBigIntegerAssert<SELF>,BigInteger>- Returns:
- this assertion object.
- Since:
- 2.7.0 / 3.7.0
-
isNegative
public SELF isNegative()
Verifies that the actual value is negative.Example:
// assertion will pass assertThat(new BigInteger("-8")).isNegative(); // assertion will fail assertThat(new BigInteger("8")).isNegative();- Specified by:
isNegativein interfaceNumberAssert<SELF extends AbstractBigIntegerAssert<SELF>,BigInteger>- Returns:
- this assertion object.
- Since:
- 2.7.0 / 3.7.0
-
isNotNegative
public SELF isNotNegative()
Verifies that the actual value is non negative (positive or equal zero).Example:
// assertion will pass assertThat(new BigInteger("8")).isNotNegative(); // assertion will fail assertThat(new BigInteger("-8")).isNotNegative();- Specified by:
isNotNegativein interfaceNumberAssert<SELF extends AbstractBigIntegerAssert<SELF>,BigInteger>- Returns:
thisassertion object.- Since:
- 2.7.0 / 3.7.0
-
isNotPositive
public SELF isNotPositive()
Verifies that the actual value is non positive (negative or equal zero).Example:
// assertion will pass assertThat(new BigInteger("-8")).isNotPositive(); // assertion will fail assertThat(new BigInteger("8")).isNotPositive();- Specified by:
isNotPositivein interfaceNumberAssert<SELF extends AbstractBigIntegerAssert<SELF>,BigInteger>- Returns:
thisassertion object.- Since:
- 2.7.0 / 3.7.0
-
isCloseTo
public SELF isCloseTo(BigInteger expected, Offset<BigInteger> offset)
Verifies that the actual number is close to the given one within the given offset.
If difference is equal to offset value, assertion is considered valid.Example:
import static org.assertj.core.api.Assertions.within; final BigInteger actual = new BigInteger("8"); final BigInteger other = new BigInteger("10"); // valid assertion assertThat(actual).isCloseTo(other, within(new BigInteger("3"))); // if difference is exactly equals to given offset value, it's ok assertThat(actual).isCloseTo(other, within(new BigInteger("2"))); // but if difference is greater than given offset value assertion will fail : assertThat(actual).isCloseTo(other, within(new BigInteger("1")));- Specified by:
isCloseToin interfaceNumberAssert<SELF extends AbstractBigIntegerAssert<SELF>,BigInteger>- Parameters:
expected- the given number to compare the actual value to.offset- the given positive offset.- Returns:
thisassertion object.- Throws:
NullPointerException- if the given offset isnull.NullPointerException- if the expected number isnull.AssertionError- if the actual value is not close to the given one.- Since:
- 2.7.0 / 3.7.0
-
isNotCloseTo
public SELF isNotCloseTo(BigInteger expected, Offset<BigInteger> offset)
Verifies that the actual number is not close to the given one by less than the given offset.
If the difference is equal to the offset value, the assertion fails.Example:
import static org.assertj.core.api.Assertions.byLessThan; final BigInteger actual = new BigInteger("8"); final BigInteger other = new BigInteger("10"); // this assertion succeeds assertThat(actual).isNotCloseTo(other, byLessThan(new BigInteger("1"))); // the assertion fails if the difference is equal to the given offset value assertThat(actual).isNotCloseTo(other, byLessThan(new BigInteger("2"))); // the assertion fails if the difference is greater than the given offset value assertThat(actual).isNotCloseTo(other, byLessThan(new BigInteger("3")));- Specified by:
isNotCloseToin interfaceNumberAssert<SELF extends AbstractBigIntegerAssert<SELF>,BigInteger>- Parameters:
expected- the given number to compare the actual value to.offset- the given positive offset.- Returns:
thisassertion object.- Throws:
NullPointerException- if the given offset isnull.NullPointerException- if the expected number isnull.AssertionError- if the actual value is close to the given one within the offset value.- Since:
- 2.7.0 / 3.7.0
- See Also:
Assertions.byLessThan(BigInteger)
-
isCloseTo
public SELF isCloseTo(BigInteger expected, Percentage percentage)
Verifies that the actual number is close to the given one within the given percentage.
If difference is equal to the percentage value, assertion is considered valid.Example with BigInteger:
import static org.assertj.core.api.Assertions.withinPercentage; // assertions will pass: assertThat(new BigInteger("11")).isCloseTo(BigInteger.TEN, withinPercentage(20)); // if difference is exactly equals to the computed offset (1), it's ok assertThat(new BigInteger("11")).isCloseTo(BigInteger.TEN, withinPercentage(10)); // assertion will fail assertThat(new BigInteger("11")).isCloseTo(BigInteger.TEN, withinPercentage(5));- Specified by:
isCloseToin interfaceNumberAssert<SELF extends AbstractBigIntegerAssert<SELF>,BigInteger>- Parameters:
expected- the given number to compare the actual value to.percentage- the given positive percentage.- Returns:
thisassertion object.- Throws:
NullPointerException- if the given offset isnull.NullPointerException- if the expected number isnull.AssertionError- if the actual value is not close to the given one.- Since:
- 2.7.0 / 3.7.0
-
isNotCloseTo
public SELF isNotCloseTo(BigInteger expected, Percentage percentage)
Verifies that the actual number is not close to the given one by the given percentage.
If difference is equal to the percentage value, the assertion fails.Example with BigInteger:
import static org.assertj.core.api.Assertions.withinPercentage; BigInteger eleven = new BigInteger("11"); // assertion will pass: assertThat(eleven).isNotCloseTo(BigInteger.TEN, withinPercentage(5)); // assertion will fail as the difference is exactly equals to the computed offset (1) assertThat(eleven).isNotCloseTo(BigInteger.TEN, withinPercentage(10)); // assertion will fail assertThat(eleven).isNotCloseTo(BigInteger.TEN, withinPercentage(20));- Specified by:
isNotCloseToin interfaceNumberAssert<SELF extends AbstractBigIntegerAssert<SELF>,BigInteger>- Parameters:
expected- the given number to compare the actual value to.percentage- the given positive percentage.- Returns:
thisassertion object.- Throws:
NullPointerException- if the given offset isnull.NullPointerException- if the expected number isnull.AssertionError- if the actual value is close to the given one.- Since:
- 2.7.0 / 3.7.0
-
isBetween
public SELF isBetween(BigInteger start, BigInteger end)
Verifies that the actual value is in [start, end] range (start and end included).Example:
// assertions will pass assertThat(new BigInteger("8")).isBetween(new BigInteger("7"), new BigInteger("9")); assertThat(new BigInteger("8")).isBetween(new BigInteger("8"), new BigInteger("9")); assertThat(new BigInteger("8")).isBetween(new BigInteger("7"), new BigInteger("8")); // assertion will fail assertThat(new BigInteger("8")).isBetween(new BigInteger("6"), new BigInteger("7"));- Specified by:
isBetweenin interfaceComparableAssert<SELF extends AbstractBigIntegerAssert<SELF>,BigInteger>- Specified by:
isBetweenin interfaceNumberAssert<SELF extends AbstractBigIntegerAssert<SELF>,BigInteger>- Overrides:
isBetweenin classAbstractComparableAssert<SELF extends AbstractBigIntegerAssert<SELF>,BigInteger>- Parameters:
start- the start value (inclusive), expected not to be null.end- the end value (inclusive), expected not to be null.- Returns:
- this assertion object.
- Since:
- 2.7.0 / 3.7.0
-
isStrictlyBetween
public SELF isStrictlyBetween(BigInteger start, BigInteger end)
Verifies that the actual value is in ]start, end[ range (start excluded, end excluded).Example:
// assertion will pass assertThat(new BigInteger("8")).isStrictlyBetween(new BigInteger("7"), new BigInteger("9")); // assertions will fail assertThat(new BigInteger("8")).isStrictlyBetween(new BigInteger("8"), new BigInteger("9")); assertThat(new BigInteger("8")).isStrictlyBetween(new BigInteger("7"), new BigInteger("8"));- Specified by:
isStrictlyBetweenin interfaceComparableAssert<SELF extends AbstractBigIntegerAssert<SELF>,BigInteger>- Specified by:
isStrictlyBetweenin interfaceNumberAssert<SELF extends AbstractBigIntegerAssert<SELF>,BigInteger>- Overrides:
isStrictlyBetweenin classAbstractComparableAssert<SELF extends AbstractBigIntegerAssert<SELF>,BigInteger>- Parameters:
start- the start value (exclusive), expected not to be null.end- the end value (exclusive), expected not to be null.- Returns:
- this assertion object.
- Since:
- 2.7.0 / 3.7.0
-
isEqualTo
public SELF isEqualTo(String expected)
Same asisEqualTo(BigInteger)but takes care of converting given String toBigIntegerfor you.Example:
// assertion will pass assertThat(new BigInteger("8")).isEqualTo("8"); // assertion will fail assertThat(new BigInteger("8")).isEqualTo("2");- Since:
- 2.7.0 / 3.7.0
-
isEqualTo
public SELF isEqualTo(int expected)
Same asisEqualTo(BigInteger)but takes care of converting given int toBigIntegerfor you.Example:
// assertion will pass assertThat(new BigInteger("8")).isEqualTo(8); // assertion will fail assertThat(new BigInteger("8")).isEqualTo(2);- Since:
- 2.7.0 / 3.7.0
-
isEqualTo
public SELF isEqualTo(long expected)
Same asisEqualTo(BigInteger)but takes care of converting given int toBigIntegerfor you.Example:
// assertion will pass assertThat(new BigInteger("8")).isEqualTo(8L); // assertion will fail assertThat(new BigInteger("8")).isEqualTo(2L);- Since:
- 2.7.0 / 3.7.0
-
usingComparator
public SELF usingComparator(Comparator<? super BigInteger> 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<SELF extends AbstractBigIntegerAssert<SELF>,BigInteger>- Overrides:
usingComparatorin classAbstractComparableAssert<SELF extends AbstractBigIntegerAssert<SELF>,BigInteger>- Parameters:
customComparator- the comparator to use for incoming assertion checks.- Returns:
thisassertion object.
-
usingDefaultComparator
public SELF 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<SELF extends AbstractBigIntegerAssert<SELF>,BigInteger>- Overrides:
usingDefaultComparatorin classAbstractComparableAssert<SELF extends AbstractBigIntegerAssert<SELF>,BigInteger>- Returns:
thisassertion object.
-
-