SELF - the "self" type of this assertion class. Please read "Emulating 'self types' using Java Generics to simplify fluent API implementation"
for more details.Assert<SELF,ACTUAL>, ComparableAssert<SELF,Short>, Descriptable<SELF>, ExtensionPoints<SELF,ACTUAL>, NumberAssert<SELF,Short>ShortAssertpublic abstract class AbstractShortAssert<SELF extends AbstractShortAssert<SELF>> extends AbstractComparableAssert<SELF,Short> implements NumberAssert<SELF,Short>
Shorts.actual, info, myself| Constructor | Description |
|---|---|
AbstractShortAssert(Short actual,
Class<?> selfType) |
| Modifier and Type | Method | Description |
|---|---|---|
SELF |
isBetween(Short start,
Short end) |
Verifies that the actual value is in [start, end] range (start included, end included).
|
SELF |
isCloseTo(short expected,
Offset<Short> offset) |
Verifies that the actual short is close to the given one within the given offset.
If difference is equal to offset value, assertion is considered valid. |
SELF |
isCloseTo(short 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. |
SELF |
isCloseTo(Short expected,
Offset<Short> offset) |
Verifies that the actual short is close to the given one within the given offset.
If difference is equal to offset value, assertion is considered valid. |
SELF |
isCloseTo(Short 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. |
SELF |
isEqualTo(short expected) |
Verifies that the actual value is equal to the given one.
|
SELF |
isGreaterThan(short other) |
Verifies that the actual value is greater than the given one.
|
SELF |
isGreaterThanOrEqualTo(short other) |
Verifies that the actual value is greater than or equal to the given one.
|
SELF |
isLessThan(short other) |
Verifies that the actual value is less than the given one.
|
SELF |
isLessThanOrEqualTo(short other) |
Verifies that the actual value is less than or equal to the given one.
|
SELF |
isNegative() |
Verifies that the actual value is negative.
|
SELF |
isNotCloseTo(short expected,
Offset<Short> offset) |
Verifies that the actual short 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. |
SELF |
isNotCloseTo(short 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. |
SELF |
isNotCloseTo(Short expected,
Offset<Short> offset) |
Verifies that the actual short 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. |
SELF |
isNotCloseTo(Short 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. |
SELF |
isNotEqualTo(short other) |
Verifies that the actual value is not equal to the given one.
|
SELF |
isNotNegative() |
Verifies that the actual value is non negative (positive or equal zero).
|
SELF |
isNotPositive() |
Verifies that the actual value is non positive (negative or equal zero).
|
SELF |
isNotZero() |
Verifies that the actual value is not equal to zero.
|
SELF |
isOne() |
Verifies that the actual value is equal to one.
|
SELF |
isPositive() |
Verifies that the actual value is positive.
|
SELF |
isStrictlyBetween(Short start,
Short end) |
Verifies that the actual value is in ]start, end[ range (start excluded, end excluded).
|
SELF |
isZero() |
Verifies that the actual value is equal to zero.
|
SELF |
usingComparator(Comparator<? super Short> customComparator) |
Use given custom comparator instead of relying on actual type A equals method for incoming assertion checks.
|
SELF |
usingDefaultComparator() |
Revert to standard comparison for incoming assertion checks.
|
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, withThreadDumpOnErrorinBinary, inHexadecimal, isEqualByComparingTo, isGreaterThan, isGreaterThanOrEqualTo, isLessThan, isLessThanOrEqualTo, isNotEqualByComparingToas, as, defaultTypeComparators, extracting, extracting, hasFieldOrProperty, hasFieldOrPropertyWithValue, hasNoNullFieldsOrProperties, hasNoNullFieldsOrPropertiesExcept, isEqualToComparingFieldByField, isEqualToComparingFieldByFieldRecursively, isEqualToComparingOnlyGivenFields, isEqualToIgnoringGivenFields, isEqualToIgnoringNullFields, returns, usingComparatorForFields, usingComparatorForTypepublic SELF isEqualTo(short expected)
Example:
// assertion will pass:
assertThat(Short.valueOf("1")).isEqualTo((short) 1);
// assertion will fail:
assertThat(Short.valueOf("-1")).isEqualTo((short) 1);
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 SELF isNotEqualTo(short other)
Example:
// assertion will pass:
assertThat(Short.valueOf(("-1")).isNotEqualTo((short) 1);
// assertion will fail:
assertThat(Short.valueOf("1")).isNotEqualTo((short) 1);
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 SELF 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<SELF extends AbstractShortAssert<SELF>,Short>public SELF 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<SELF extends AbstractShortAssert<SELF>,Short>public SELF isOne()
Example:
// assertions will pass
assertThat(1).isOne();
assertThat(1.0).isOne();
// assertions will fail
assertThat(42).isOne();
assertThat(3.142).isOne();isOne in interface NumberAssert<SELF extends AbstractShortAssert<SELF>,Short>public SELF 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<SELF extends AbstractShortAssert<SELF>,Short>public SELF 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<SELF extends AbstractShortAssert<SELF>,Short>public SELF 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<SELF extends AbstractShortAssert<SELF>,Short>this assertion object.public SELF 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<SELF extends AbstractShortAssert<SELF>,Short>this assertion object.public SELF isLessThan(short other)
Example:
// assertion will pass:
assertThat(Short.valueOf("1")).isLessThan((short) 2);
// assertion will fail:
assertThat(Short.valueOf("1")).isLessThan((short) 0);
assertThat(Short.valueOf("1")).isLessThan((short) 1);
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 SELF isLessThanOrEqualTo(short other)
Example:
// assertion will pass:
assertThat(Short.valueOf("1")).isLessThanOrEqualTo((short) 1);
// assertion will fail:
assertThat(Short.valueOf("1")).isLessThanOrEqualTo((short) 0);
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 SELF isGreaterThan(short other)
Example:
// assertion will pass:
assertThat(Short.valueOf("1")).isGreaterThan((short) 0);
// assertions will fail:
assertThat(Short.valueOf("0")).isGreaterThan((short) 1);
assertThat(Short.valueOf("0")).isGreaterThan((short) 0);
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 SELF isGreaterThanOrEqualTo(short other)
Example:
// assertion will pass:
assertThat(Short.valueOf("1")).isGreaterThanOrEqualTo((short) 1);
// assertion will fail:
assertThat(Short.valueOf("0")).isGreaterThanOrEqualTo((short) 1);
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 SELF isBetween(Short start, Short 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<SELF extends AbstractShortAssert<SELF>,Short>isBetween in interface NumberAssert<SELF extends AbstractShortAssert<SELF>,Short>isBetween in class AbstractComparableAssert<SELF extends AbstractShortAssert<SELF>,Short>start - the start value (inclusive), expected not to be null.end - the end value (inclusive), expected not to be null.public SELF isStrictlyBetween(Short start, Short 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<SELF extends AbstractShortAssert<SELF>,Short>isStrictlyBetween in interface NumberAssert<SELF extends AbstractShortAssert<SELF>,Short>isStrictlyBetween in class AbstractComparableAssert<SELF extends AbstractShortAssert<SELF>,Short>start - the start value (exclusive), expected not to be null.end - the end value (exclusive), expected not to be null.public SELF isCloseTo(short expected, Offset<Short> offset)
Example:
// assertions will pass:
assertThat((short)5).isCloseTo((short)7, within((short)3));
// if difference is exactly equals to the offset, it's ok
assertThat((short)5).isCloseTo((short)7, within((short)2));
// assertion will fail
assertThat((short)5).isCloseTo((short)7, within((short)1));expected - the given short 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 SELF isNotCloseTo(short expected, Offset<Short> offset)
Example:
// assertion will pass:
assertThat((short)5).isNotCloseTo((short)7, byLessThan((short)1));
// assertion will fail
assertThat((short)5).isNotCloseTo((short)7, byLessThan((short)2));
assertThat((short)5).isNotCloseTo((short)7, byLessThan((short)3));expected - the given short 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(Short)public SELF isCloseTo(Short expected, Offset<Short> offset)
Example:
// assertions will pass:
assertThat((short)5).isCloseTo(Short.valueOf(7), within((short)3));
// if difference is exactly equals to the offset, it's ok
assertThat((short)5).isCloseTo(Short.valueOf(7), within((short)2));
// assertion will fail
assertThat((short)5).isCloseTo(Short.valueOf(7), within((short)1));isCloseTo in interface NumberAssert<SELF extends AbstractShortAssert<SELF>,Short>expected - the given short 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 SELF isNotCloseTo(Short expected, Offset<Short> offset)
Example:
// assertion will pass:
assertThat((short)5).isNotCloseTo(Short.valueOf(7), byLessThan((short)1));
// assertions will fail
assertThat((short)5).isNotCloseTo(Short.valueOf(7), byLessThan((short)2));
assertThat((short)5).isNotCloseTo(Short.valueOf(7), byLessThan((short)3));isNotCloseTo in interface NumberAssert<SELF extends AbstractShortAssert<SELF>,Short>expected - the given short 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(Short)public SELF isCloseTo(Short expected, Percentage percentage)
Example with short:
// assertions will pass:
assertThat((short)11).isCloseTo(Short.valueOf(10), withinPercentage((short)20));
// if difference is exactly equals to the computed offset (1), it's ok
assertThat((short)11).isCloseTo(Short.valueOf(10), withinPercentage((short)10));
// assertion will fail
assertThat((short)11).isCloseTo(Short.valueOf(10), withinPercentage((short)5));isCloseTo in interface NumberAssert<SELF extends AbstractShortAssert<SELF>,Short>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 SELF isNotCloseTo(Short expected, Percentage percentage)
Example with short:
// assertion will pass:
assertThat((short)11).isNotCloseTo(Short.valueOf(10), withinPercentage((short)5));
// assertions will fail
assertThat((short)11).isNotCloseTo(Short.valueOf(10), withinPercentage((short)10));
assertThat((short)11).isNotCloseTo(Short.valueOf(10), withinPercentage((short)20));isNotCloseTo in interface NumberAssert<SELF extends AbstractShortAssert<SELF>,Short>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 SELF isCloseTo(short expected, Percentage percentage)
Example with short:
// assertions will pass:
assertThat((short)11).isCloseTo((short)10, withinPercentage((short)20));
// if difference is exactly equals to the computed offset (1), it's ok
assertThat((short)11).isCloseTo((short)10, withinPercentage((short)10));
// assertion will fail
assertThat((short)11).isCloseTo((short)10, withinPercentage((short)5));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 SELF isNotCloseTo(short expected, Percentage percentage)
Example with short:
// assertion will pass:
assertThat((short)11).isNotCloseTo((short)10, withinPercentage((short)5));
// assertions will fail
assertThat((short)11).isNotCloseTo((short)10, withinPercentage((short)10));
assertThat((short)11).isNotCloseTo((short)10, withinPercentage((short)20));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 SELF usingComparator(Comparator<? super Short> 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<SELF extends AbstractObjectAssert<SELF,ACTUAL>,ACTUAL>usingComparator in class AbstractComparableAssert<SELF extends AbstractShortAssert<SELF>,Short>customComparator - the comparator to use for incoming assertion checks.this assertion object.public SELF usingDefaultComparator()
AbstractAssert
This method should be used to disable a custom comparison strategy set by calling
Assert.usingComparator(Comparator).
usingDefaultComparator in interface Assert<SELF extends AbstractObjectAssert<SELF,ACTUAL>,ACTUAL>usingDefaultComparator in class AbstractComparableAssert<SELF extends AbstractShortAssert<SELF>,Short>this assertion object.Copyright © 2014–2019. All rights reserved.