S
- the "self" type of this assertion class. Please read "Emulating 'self types' using Java Generics to simplify fluent API implementation"
for more details.public abstract class AbstractIntegerAssert<S extends AbstractIntegerAssert<S>> extends AbstractComparableAssert<S,Integer> implements NumberAssert<S,Integer>
Integer
s.actual, info, myself
Modifier | Constructor and Description |
---|---|
protected |
AbstractIntegerAssert(Integer actual,
Class<?> selfType) |
Modifier and Type | Method and Description |
---|---|
S |
isBetween(Integer start,
Integer end)
Verifies that the actual value is in [start, end] range (start included, end included).
|
S |
isCloseTo(Integer expected,
Offset<Integer> offset)
Verifies that the actual int is close to the given one within the given offset.
If difference is equal to offset value, assertion is considered valid. |
S |
isCloseTo(Integer 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. |
S |
isCloseTo(int expected,
Offset<Integer> offset)
Verifies that the actual int is close to the given one within the given offset.
If difference is equal to offset value, assertion is considered valid. |
S |
isCloseTo(int 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. |
S |
isEqualTo(int expected)
Verifies that the actual value is equal to the given one.
|
S |
isGreaterThan(int other)
Verifies that the actual value is greater than the given one.
|
S |
isGreaterThanOrEqualTo(int other)
Verifies that the actual value is greater than or equal to the given one.
|
S |
isLessThan(int other)
Verifies that the actual value is less than the given one.
|
S |
isLessThanOrEqualTo(int other)
Verifies that the actual value is less than or equal to the given one.
|
S |
isNegative()
Verifies that the actual value is negative.
|
S |
isNotEqualTo(int other)
Verifies that the actual value is not equal to the given one.
|
S |
isNotNegative()
Verifies that the actual value is non negative (positive or equal zero).
|
S |
isNotPositive()
Verifies that the actual value is non positive (negative or equal zero).
|
S |
isNotZero()
Verifies that the actual value is not equal to zero.
|
S |
isPositive()
Verifies that the actual value is positive.
|
S |
isStrictlyBetween(Integer start,
Integer end)
Verifies that the actual value is in ]start, end[ range (start excluded, end excluded).
|
S |
isZero()
Verifies that the actual value is equal to zero.
|
S |
usingComparator(Comparator<? super Integer> customComparator)
Use given custom comparator instead of relying on actual type A equals method for incoming assertion checks.
|
S |
usingDefaultComparator()
Revert to standard comparison for incoming assertion checks.
|
inBinary, inHexadecimal, isEqualByComparingTo, isGreaterThan, isGreaterThanOrEqualTo, isLessThan, isLessThanOrEqualTo, isNotEqualByComparingTo
isEqualToComparingFieldByField, isEqualToComparingOnlyGivenFields, isEqualToIgnoringGivenFields, isEqualToIgnoringNullFields
as, as, asList, asString, describedAs, describedAs, descriptionText, doesNotHave, doesNotHaveSameClassAs, equals, failure, failWithMessage, getWritableAssertionInfo, has, hashCode, hasSameClassAs, hasToString, is, isEqualTo, isExactlyInstanceOf, isIn, isIn, isInstanceOf, isInstanceOfAny, isNot, isNotEqualTo, isNotExactlyInstanceOf, isNotIn, isNotIn, isNotInstanceOf, isNotInstanceOfAny, isNotNull, isNotOfAnyClassIn, isNotSameAs, isNull, isOfAnyClassIn, isSameAs, matches, matches, overridingErrorMessage, withThreadDumpOnError
public S isEqualTo(int expected)
expected
- the given value to compare the actual value to.this
assertion object.AssertionError
- if the actual value is null
.AssertionError
- if the actual value is not equal to the given one.public S isNotEqualTo(int other)
other
- the given value to compare the actual value to.this
assertion object.AssertionError
- if the actual value is null
.AssertionError
- if the actual value is equal to the given one.public S isZero()
isZero
in interface NumberAssert<S extends AbstractIntegerAssert<S>,Integer>
public S isNotZero()
isNotZero
in interface NumberAssert<S extends AbstractIntegerAssert<S>,Integer>
public S isPositive()
isPositive
in interface NumberAssert<S extends AbstractIntegerAssert<S>,Integer>
public S isNegative()
isNegative
in interface NumberAssert<S extends AbstractIntegerAssert<S>,Integer>
public S isNotNegative()
isNotNegative
in interface NumberAssert<S extends AbstractIntegerAssert<S>,Integer>
this
assertion object.public S isNotPositive()
isNotPositive
in interface NumberAssert<S extends AbstractIntegerAssert<S>,Integer>
this
assertion object.public S isLessThan(int other)
other
- the given value to compare the actual value to.this
assertion object.AssertionError
- if the actual value is null
.AssertionError
- if the actual value is equal to or greater than the given one.public S isLessThanOrEqualTo(int other)
other
- the given value to compare the actual value to.this
assertion object.AssertionError
- if the actual value is null
.AssertionError
- if the actual value is greater than the given one.public S isGreaterThan(int other)
other
- the given value to compare the actual value to.this
assertion object.AssertionError
- if the actual value is null
.AssertionError
- if the actual value is equal to or less than the given one.public S isGreaterThanOrEqualTo(int other)
other
- the given value to compare the actual value to.this
assertion object.AssertionError
- if the actual value is null
.AssertionError
- if the actual value is less than the given one.public S isBetween(Integer start, Integer end)
// these assertions succeed ...
assertThat(12).isBetween(10, 14);
assertThat(12).isBetween(12, 14);
assertThat(12).isBetween(10, 12);
// ... but these one fails
assertThat(12).isBetween(14, 16);
isBetween
in interface NumberAssert<S extends AbstractIntegerAssert<S>,Integer>
start
- the start value (inclusive), expected not to be null.end
- the end value (inclusive), expected not to be null.public S isStrictlyBetween(Integer start, Integer end)
// this assertion succeeds ...
assertThat(12).isBetween(10, 14);
// ... but these one fails
assertThat(12).isBetween(12, 14);
assertThat(12).isBetween(10, 12);
assertThat(12).isBetween(16, 18);
isStrictlyBetween
in interface NumberAssert<S extends AbstractIntegerAssert<S>,Integer>
start
- the start value (exclusive), expected not to be null.end
- the end value (exclusive), expected not to be null.public S isCloseTo(int expected, Offset<Integer> offset)
Example:
// assertions will pass:
assertThat(5).isCloseTo(7, within(3));
// if difference is exactly equals to the offset, it's ok
assertThat(5).isCloseTo(7, within(2));
// assertion will fail
assertThat(5).isCloseTo(7, within(1));
expected
- the given int to compare the actual value to.offset
- the given positive offset.this
assertion object.NullPointerException
- if the given offset is null
.AssertionError
- if the actual value is not equal to the given one.public S isCloseTo(Integer expected, Offset<Integer> offset)
Example:
// assertions will pass:
assertThat(5).isCloseTo(Integer.valueOf(7), within(3));
// if difference is exactly equals to the offset, it's ok
assertThat(5).isCloseTo(Integer.valueOf(7), within(2));
// assertion will fail
assertThat(5).isCloseTo(Integer.valueOf(7), within(1));
isCloseTo
in interface NumberAssert<S extends AbstractIntegerAssert<S>,Integer>
expected
- the given int to compare the actual value to.offset
- the given positive offset.this
assertion object.NullPointerException
- if the given offset is null
.AssertionError
- if the actual value is not equal to the given one.public S isCloseTo(Integer expected, Percentage percentage)
Example with integer:
// assertions will pass:
assertThat(11).isCloseTo(Integer.valueOf(10), withinPercentage(20));
// if difference is exactly equals to the computed offset (1), it's ok
assertThat(11).isCloseTo(Integer.valueOf(10), withinPercentage(10));
// assertion will fail
assertThat(11).isCloseTo(Integer.valueOf(10), withinPercentage(5));
isCloseTo
in interface NumberAssert<S extends AbstractIntegerAssert<S>,Integer>
expected
- the given number to compare the actual value to.percentage
- the given positive percentage between 0 and 100.this
assertion object.NullPointerException
- if the given offset is null
.NullPointerException
- if the expected number is null
.AssertionError
- if the actual value is not equal to the given one.public S isCloseTo(int expected, Percentage percentage)
Example with integer:
// assertions will pass:
assertThat(11).isCloseTo(10, withinPercentage(20));
// if difference is exactly equals to the computed offset (1), it's ok
assertThat(11).isCloseTo(10, withinPercentage(10));
// assertion will fail
assertThat(11).isCloseTo(10, withinPercentage(5));
expected
- the given number to compare the actual value to.percentage
- the given positive percentage between 0 and 100.this
assertion object.NullPointerException
- if the given offset is null
.NullPointerException
- if the expected number is null
.AssertionError
- if the actual value is not equal to the given one.public S usingComparator(Comparator<? super Integer> customComparator)
AbstractAssert
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);
usingComparator
in interface Assert<S extends AbstractIntegerAssert<S>,Integer>
usingComparator
in class AbstractComparableAssert<S extends AbstractIntegerAssert<S>,Integer>
customComparator
- the comparator to use for incoming assertion checks.this
assertion object.public S usingDefaultComparator()
AbstractAssert
This method should be used to disable a custom comparison strategy set by calling
Assert.usingComparator(Comparator)
.
usingDefaultComparator
in interface Assert<S extends AbstractIntegerAssert<S>,Integer>
usingDefaultComparator
in class AbstractComparableAssert<S extends AbstractIntegerAssert<S>,Integer>
this
assertion object.Copyright © 2014-2015 AssertJ. All Rights Reserved.