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 AbstractLongAssert<S extends AbstractLongAssert<S>> extends AbstractComparableAssert<S,Long> implements NumberAssert<S,Long>
Longs.actual, info, myself| Constructor and Description |
|---|
AbstractLongAssert(Long actual,
Class<?> selfType) |
| Modifier and Type | Method and Description |
|---|---|
S |
isBetween(Long start,
Long end)
Verifies that the actual value is in [start, end] range (start included, end included).
|
S |
isCloseTo(long expected,
Offset<Long> offset)
Verifies that the actual long is close to the given one within the given offset.
If difference is equal to offset value, assertion is considered valid. |
S |
isCloseTo(Long expected,
Offset<Long> offset)
Verifies that the actual long is close to the given one within the given offset.
If difference is equal to offset value, assertion is considered valid. |
S |
isCloseTo(long 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(Long 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(long expected)
Verifies that the actual value is equal to the given one.
|
S |
isGreaterThan(long other)
Verifies that the actual value is greater than the given one.
|
S |
isGreaterThanOrEqualTo(long other)
Verifies that the actual value is greater than or equal to the given one.
|
S |
isLessThan(long other)
Verifies that the actual value is less than the given one.
|
S |
isLessThanOrEqualTo(long 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 |
isNotCloseTo(long expected,
Offset<Long> offset)
Verifies that the actual long 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. |
S |
isNotCloseTo(Long expected,
Offset<Long> offset)
Verifies that the actual long 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. |
S |
isNotCloseTo(long expected,
Percentage percentage)
Verifies that the actual number is not close to the given one within the given percentage.
If difference is equal to the percentage value, the assertion fails. |
S |
isNotCloseTo(Long expected,
Percentage percentage)
Verifies that the actual number is not close to the given one within the given percentage.
If difference is equal to the percentage value, the assertion fails. |
S |
isNotEqualTo(long 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(Long start,
Long 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 Long> 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, isNotEqualByComparingToas, as, defaultTypeComparators, extracting, hasFieldOrProperty, hasFieldOrPropertyWithValue, hasNoNullFieldsOrProperties, hasNoNullFieldsOrPropertiesExcept, isEqualToComparingFieldByField, isEqualToComparingFieldByFieldRecursively, isEqualToComparingOnlyGivenFields, isEqualToIgnoringGivenFields, isEqualToIgnoringNullFields, usingComparatorForFields, usingComparatorForTypeasList, asString, describedAs, describedAs, descriptionText, doesNotHave, doesNotHaveSameClassAs, equals, 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, overridingErrorMessage, setCustomRepresentation, withFailMessage, withRepresentation, withThreadDumpOnErrorpublic S isEqualTo(long expected)
Example:
// assertions will pass:
assertThat(1L).isEqualTo(1L);
assertThat(-1L).isEqualTo(-1L);
// assertions will fail:
assertThat(1L).isEqualTo(2L);
assertThat(1L).isEqualTo(-1L);
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(long other)
Example:
// assertions will pass:
assertThat(1L).isNotEqualTo(2L);
assertThat(1L).isNotEqualTo(-1L);
// assertion will fail:
assertThat(1L).isNotEqualTo(1L);
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()
Example:
// assertions will pass
assertThat(0).isZero();
assertThat(0.0).isZero();
// assertions will fail
assertThat(42).isZero();
assertThat(3.142).isZero();isZero in interface NumberAssert<S extends AbstractLongAssert<S>,Long>public S isNotZero()
Example:
// assertions will pass
assertThat(42).isNotZero();
assertThat(3.142).isNotZero();
// assertions will fail
assertThat(0).isNotZero();
assertThat(0.0).isNotZero();isNotZero in interface NumberAssert<S extends AbstractLongAssert<S>,Long>public S isPositive()
Example:
// assertions will pass
assertThat(42).isPositive();
assertThat(3.142).isPositive();
// assertions will fail
assertThat(0).isPositive();
assertThat(-42).isPositive();isPositive in interface NumberAssert<S extends AbstractLongAssert<S>,Long>public S isNegative()
Example:
// assertions will pass
assertThat(-42).isNegative();
assertThat(-3.124).isNegative();
// assertions will fail
assertThat(0).isNegative();
assertThat(42).isNegative();isNegative in interface NumberAssert<S extends AbstractLongAssert<S>,Long>public S isNotNegative()
Example:
// assertions will pass
assertThat(42).isNotNegative();
assertThat(0).isNotNegative();
// assertions will fail
assertThat(-42).isNotNegative();
assertThat(-3.124).isNotNegative();isNotNegative in interface NumberAssert<S extends AbstractLongAssert<S>,Long>this assertion object.public S isNotPositive()
Example:
// assertions will pass
assertThat(-42).isNotPositive();
assertThat(0).isNotPositive();
// assertions will fail
assertThat(42).isNotPositive();
assertThat(3.124).isNotPositive();isNotPositive in interface NumberAssert<S extends AbstractLongAssert<S>,Long>this assertion object.public S isLessThan(long other)
Example:
// assertions will pass:
assertThat(1L).isLessThan(2L);
assertThat(-2L).isLessThan(-1L);
// assertions will fail:
assertThat(1L).isLessThan(0L);
assertThat(1L).isLessThan(1L);
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(long other)
Example:
// assertions will pass:
assertThat(1L).isLessThanOrEqualTo(2L);
assertThat(-1L).isLessThanOrEqualTo(-2L);
assertThat(1L).isLessThanOrEqualTo(1L);
// assertions will fail:
assertThat(1L).isLessThanOrEqualTo(2L);
assertThat(-1L).isLessThanOrEqualTo(-2L);
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(long other)
Example:
// assertions will pass:
assertThat(1L).isGreaterThan(0L);
assertThat(-1L).isGreaterThan(-2L);
// assertions will fail:
assertThat(1L).isGreaterThan(2L);
assertThat(1L).isGreaterThan(1L);
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(long other)
Example:
// assertions will pass:
assertThat(2L).isGreaterThanOrEqualTo(1L);
assertThat(1L).isGreaterThanOrEqualTo(1L);
// assertions will fail:
assertThat(1L).isGreaterThanOrEqualTo(2L);
assertThat(-1L).isGreaterThanOrEqualTo(1L);
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(Long start, Long end)
// assertions succeed
assertThat('b').isBetween('a', 'c');
assertThat('a').isBetween('a', 'b');
assertThat('b').isBetween('a', 'b');
// assertions fail
assertThat('a').isBetween('b', 'c');
assertThat('c').isBetween('a', 'b');isBetween in interface ComparableAssert<S extends AbstractLongAssert<S>,Long>isBetween in interface NumberAssert<S extends AbstractLongAssert<S>,Long>isBetween in class AbstractComparableAssert<S extends AbstractLongAssert<S>,Long>start - the start value (inclusive), expected not to be null.end - the end value (inclusive), expected not to be null.public S isStrictlyBetween(Long start, Long end)
// assertion succeeds
assertThat('b').isStrictlyBetween('a', 'c');
// assertions fail
assertThat('d').isStrictlyBetween('a', 'c');
assertThat('a').isStrictlyBetween('b', 'd');
assertThat('a').isStrictlyBetween('a', 'b');
assertThat('b').isStrictlyBetween('a', 'b');isStrictlyBetween in interface ComparableAssert<S extends AbstractLongAssert<S>,Long>isStrictlyBetween in interface NumberAssert<S extends AbstractLongAssert<S>,Long>isStrictlyBetween in class AbstractComparableAssert<S extends AbstractLongAssert<S>,Long>start - the start value (exclusive), expected not to be null.end - the end value (exclusive), expected not to be null.public S isCloseTo(long expected, Offset<Long> offset)
Example:
// assertions will pass:
assertThat(5L).isCloseTo(7L, within(3L));
// if difference is exactly equals to the offset, it's ok
assertThat(5L).isCloseTo(7L, within(2L));
// assertion will fail
assertThat(5L).isCloseTo(7L, within(1L));expected - the given long 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 close to the given one.public S isNotCloseTo(long expected, Offset<Long> offset)
Example:
// assertion will pass:
assertThat(5L).isNotCloseTo(7L, byLessThan(1L));
// assertions will fail
assertThat(5L).isNotCloseTo(7L, byLessThan(2L));
assertThat(5L).isNotCloseTo(7L, byLessThan(3L));expected - the given long 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 close to the given one.Assertions.byLessThan(Long)public S isCloseTo(Long expected, Offset<Long> offset)
Example:
// assertions will pass:
assertThat(5L).isCloseTo(Long.valueOf(7L), within(3L));
// if difference is exactly equals to the offset, it's ok
assertThat(5L).isCloseTo(Long.valueOf(7L), within(2L));
// assertion will fail
assertThat(5L).isCloseTo(Long.valueOf(7L), within(1L));isCloseTo in interface NumberAssert<S extends AbstractLongAssert<S>,Long>expected - the given long 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 close to the given one.public S isNotCloseTo(Long expected, Offset<Long> offset)
Example:
// assertion will pass:
assertThat(5L).isNotCloseTo(Long.valueOf(7L), byLessThan(1L));
// assertions will fail
assertThat(5L).isNotCloseTo(Long.valueOf(7L), byLessThan(2L));
assertThat(5L).isNotCloseTo(Long.valueOf(7L), byLessThan(3L));isNotCloseTo in interface NumberAssert<S extends AbstractLongAssert<S>,Long>expected - the given long 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 close to the given one.Assertions.byLessThan(Long)public S isCloseTo(Long expected, Percentage percentage)
Example with long:
// assertions will pass:
assertThat(11L).isCloseTo(Long.valueOf(10L), withinPercentage(20L));
// if difference is exactly equals to the computed offset (1L), it's ok
assertThat(11L).isCloseTo(Long.valueOf(10L), withinPercentage(10L));
// assertion will fail
assertThat(11L).isCloseTo(Long.valueOf(10L), withinPercentage(5L));isCloseTo in interface NumberAssert<S extends AbstractLongAssert<S>,Long>expected - the given number to compare the actual value to.percentage - the given positive percentage.this assertion object.NullPointerException - if the given offset is null.NullPointerException - if the expected number is null.AssertionError - if the actual value is not close to the given one.public S isNotCloseTo(Long expected, Percentage percentage)
Example with long:
// assertion will pass:
assertThat(11L).isNotCloseTo(Long.valueOf(10L), withinPercentage(5L));
// assertions will fail
assertThat(11L).isNotCloseTo(Long.valueOf(10L), withinPercentage(10L));
assertThat(11L).isNotCloseTo(Long.valueOf(10L), withinPercentage(20L));isNotCloseTo in interface NumberAssert<S extends AbstractLongAssert<S>,Long>expected - the given number to compare the actual value to.percentage - the given positive percentage.this assertion object.NullPointerException - if the given offset is null.NullPointerException - if the expected number is null.AssertionError - if the actual value is close to the given one.public S isCloseTo(long expected, Percentage percentage)
Example with long:
// assertions will pass:
assertThat(11L).isCloseTo(10L, withinPercentage(20L));
// if difference is exactly equals to the computed offset (1L), it's ok
assertThat(11L).isCloseTo(10L, withinPercentage(10L));
// assertion will fail
assertThat(11L).isCloseTo(10L, withinPercentage(5L));expected - the given number to compare the actual value to.percentage - the given positive percentage.this assertion object.NullPointerException - if the given offset is null.NullPointerException - if the expected number is null.AssertionError - if the actual value is not close to the given one.public S isNotCloseTo(long expected, Percentage percentage)
Example with long:
// assertion will pass:
assertThat(11L).isNotCloseTo(10L, withinPercentage(5L));
// assertions will fail
assertThat(11L).isNotCloseTo(10L, withinPercentage(10L));
assertThat(11L).isNotCloseTo(10L, withinPercentage(20L));expected - the given number to compare the actual value to.percentage - the given positive percentage.this assertion object.NullPointerException - if the given offset is null.NullPointerException - if the expected number is null.AssertionError - if the actual value is close to the given one.public S usingComparator(Comparator<? super Long> customComparator)
AbstractAssertCustom 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 AbstractLongAssert<S>,Long>usingComparator in class AbstractComparableAssert<S extends AbstractLongAssert<S>,Long>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 AbstractLongAssert<S>,Long>usingDefaultComparator in class AbstractComparableAssert<S extends AbstractLongAssert<S>,Long>this assertion object.Copyright © 2013–2016 AssertJ. All rights reserved.