Class AbstractByteAssert<SELF extends AbstractByteAssert<SELF>>

Type Parameters:
SELF - the "self" type of this assertion class. Please read "Emulating 'self types' using Java Generics to simplify fluent API implementation" for more details.
All Implemented Interfaces:
Assert<SELF,Byte>, ComparableAssert<SELF,Byte>, Descriptable<SELF>, ExtensionPoints<SELF,Byte>, NumberAssert<SELF,Byte>
Direct Known Subclasses:
ByteAssert

public abstract class AbstractByteAssert<SELF extends AbstractByteAssert<SELF>> extends AbstractComparableAssert<SELF,Byte> implements NumberAssert<SELF,Byte>
Base class for all implementations of assertions for Bytes.
Author:
Drummond Dawson, Yvonne Wang, David DIDIER, Ansgar Konermann, Alex Ruiz, Mikhail Mazursky, Nicolas François, Cal027
  • Constructor Details

    • AbstractByteAssert

      protected AbstractByteAssert(Byte actual, Class<?> selfType)
  • Method Details

    • isEqualTo

      public SELF isEqualTo(byte expected)
      Verifies that the actual value is equal to the given one.

      Example:

       // assertions will pass
       assertThat((byte) 1).isEqualTo((byte) 1);
       assertThat((byte) 0).isEqualTo(Byte.valueOf("0"));
      
       // assertions will fail
       assertThat((byte) 1).isEqualTo((byte) 0);
       assertThat(Byte.valueOf("1")).isEqualTo((byte) 0);
      Parameters:
      expected - the given value to compare the actual value to.
      Returns:
      this assertion object.
      Throws:
      AssertionError - if the actual value is null.
      AssertionError - if the actual value is not equal to the given one.
    • isNotEqualTo

      public SELF isNotEqualTo(byte other)
      Verifies that the actual value is not equal to the given one.

      Example:

       // assertions will pass
       assertThat((byte) 0).isNotEqualTo((byte) 1);
       assertThat(Byte.valueOf("1")).isNotEqualTo((byte) 0);
      
       // assertions will fail
       assertThat((byte) 0).isNotEqualTo((byte) 0);
       assertThat(Byte.valueOf("0")).isNotEqualTo((byte) 0);
      Parameters:
      other - the given value to compare the actual value to.
      Returns:
      this assertion object.
      Throws:
      AssertionError - if the actual value is null.
      AssertionError - if the actual value is equal to the given one.
    • isZero

      public SELF isZero()
      Verifies that the actual value is equal to zero.

      Example:

       // assertions will pass
       assertThat(0).isZero();
       assertThat(0.0).isZero();
      
       // assertions will fail
       assertThat(42).isZero();
       assertThat(3.142).isZero();
      Specified by:
      isZero in interface NumberAssert<SELF extends AbstractByteAssert<SELF>,Byte>
      Returns:
      this assertion object.
    • isNotZero

      public SELF isNotZero()
      Verifies that the actual value is not equal to zero.

      Example:

       // assertions will pass
       assertThat(42).isNotZero();
       assertThat(3.142).isNotZero();
      
       // assertions will fail
       assertThat(0).isNotZero();
       assertThat(0.0).isNotZero();
      Specified by:
      isNotZero in interface NumberAssert<SELF extends AbstractByteAssert<SELF>,Byte>
      Returns:
      this assertion object.
    • isOne

      public SELF isOne()
      Verifies that the actual value is equal to one.

      Example:

       // assertions will pass
       assertThat(1).isOne();
       assertThat(1.0).isOne();
      
       // assertions will fail
       assertThat(42).isOne();
       assertThat(3.142).isOne();
      Specified by:
      isOne in interface NumberAssert<SELF extends AbstractByteAssert<SELF>,Byte>
      Returns:
      this assertion object.
    • isPositive

      public SELF isPositive()
      Verifies that the actual value is positive.

      Example:

       // assertions will pass
       assertThat(42).isPositive();
       assertThat(3.142).isPositive();
      
       // assertions will fail
       assertThat(0).isPositive();
       assertThat(-42).isPositive();

      Example:

       // assertion will pass
       assertThat((byte) 1).isPositive();
      
       // assertion will fail
       assertThat((byte) -1).isPositive();
      Specified by:
      isPositive in interface NumberAssert<SELF extends AbstractByteAssert<SELF>,Byte>
      Returns:
      this assertion object.
    • isNegative

      public SELF isNegative()
      Verifies that the actual value is negative.

      Example:

       // assertions will pass
       assertThat(-42).isNegative();
       assertThat(-3.124).isNegative();
      
       // assertions will fail
       assertThat(0).isNegative();
       assertThat(42).isNegative();

      Example:

       // assertion will pass
       assertThat((byte) -1).isNegative();
      
       // assertion will fail
       assertThat((byte) 1).isNegative();
      Specified by:
      isNegative in interface NumberAssert<SELF extends AbstractByteAssert<SELF>,Byte>
      Returns:
      this assertion object.
    • isNotNegative

      public SELF isNotNegative()
      Verifies that the actual value is non negative (positive or equal zero).

      Example:

       // assertions will pass
       assertThat(42).isNotNegative();
       assertThat(0).isNotNegative();
      
       // assertions will fail
       assertThat(-42).isNotNegative();
       assertThat(-3.124).isNotNegative();

      Example:

       // assertion will pass
       assertThat((byte) 1).isNotNegative();
      
       // assertion will fail
       assertThat((byte) -1).isNotNegative();
      Specified by:
      isNotNegative in interface NumberAssert<SELF extends AbstractByteAssert<SELF>,Byte>
      Returns:
      this assertion object.
    • isNotPositive

      public SELF isNotPositive()
      Verifies that the actual value is non positive (negative or equal zero).

      Example:

       // assertions will pass
       assertThat(-42).isNotPositive();
       assertThat(0).isNotPositive();
      
       // assertions will fail
       assertThat(42).isNotPositive();
       assertThat(3.124).isNotPositive();

      Example:

       // assertion will pass
       assertThat((byte) -1).isNotPositive();
      
       // assertion will fail
       assertThat((byte) 1).isNotPositive();
      Specified by:
      isNotPositive in interface NumberAssert<SELF extends AbstractByteAssert<SELF>,Byte>
      Returns:
      this assertion object.
    • isEven

      public SELF isEven()
      Verifies that the actual value is even.

      Example:

       // assertions will pass
       assertThat((byte) 12).isEven();
       assertThat((byte) -46).isEven();
      
       // assertions will fail
       assertThat((byte) 3).isEven();
       assertThat((byte) 15).isEven();
      Returns:
      this assertion object.
      Throws:
      AssertionError - if the actual value is null.
      AssertionError - if the actual value is not even.
      Since:
      3.17.0
    • isOdd

      public SELF isOdd()
      Verifies that the actual value is odd.

      Example:

       // assertions will pass
       assertThat((byte) 3).isOdd();
       assertThat((byte) -17).isOdd();
      
       // assertions will fail
       assertThat((byte) 2).isOdd();
       assertThat((byte) -24).isOdd();
      Returns:
      this assertion object.
      Throws:
      AssertionError - if the actual value is null.
      AssertionError - if the actual value is not odd.
      Since:
      3.17.0
    • isLessThan

      public SELF isLessThan(byte other)
      Verifies that the actual value is less than the given one.

      Example:

       // assertion will pass
       assertThat((byte) 1).isLessThan((byte) 2);
      
       // assertion will fail
       assertThat((byte) 1).isLessThan((byte) 0);
       assertThat((byte) 1).isLessThan((byte) 1);
      Parameters:
      other - the given value to compare the actual value to.
      Returns:
      this assertion object.
      Throws:
      AssertionError - if the actual value is null.
      AssertionError - if the actual value is equal to or greater than the given one.
    • isLessThanOrEqualTo

      public SELF isLessThanOrEqualTo(byte other)
      Verifies that the actual value is less than or equal to the given one.

      Example:

       // assertion will pass
       assertThat((byte) 1).isLessThanOrEqualTo((byte) 2);
       assertThat((byte) 1).isLessThanOrEqualTo((byte) 1);
      
       // assertion will fail
       assertThat((byte) 1).isLessThanOrEqualTo((byte) 0);
      Parameters:
      other - the given value to compare the actual value to.
      Returns:
      this assertion object.
      Throws:
      AssertionError - if the actual value is null.
      AssertionError - if the actual value is greater than the given one.
    • isGreaterThan

      public SELF isGreaterThan(byte other)
      Verifies that the actual value is greater than the given one.

      Example:

       // assertion will pass
       assertThat((byte) 2).isGreaterThan((byte) 1);
      
       // assertion will fail
       assertThat((byte) 2).isGreaterThan((byte) 3);
       assertThat((byte) 2).isGreaterThan((byte) 2);
      Parameters:
      other - the given value to compare the actual value to.
      Returns:
      this assertion object.
      Throws:
      AssertionError - if the actual value is null.
      AssertionError - if the actual value is equal to or less than the given one.
    • isGreaterThanOrEqualTo

      public SELF isGreaterThanOrEqualTo(byte other)
      Verifies that the actual value is greater than or equal to the given one.

      Example:

       // assertion will pass
       assertThat((byte) 2).isGreaterThanOrEqualTo((byte) 1);
       assertThat((byte) 2).isGreaterThanOrEqualTo((byte) 2);
      
       // assertion will fail
       assertThat((byte) 2).isGreaterThanOrEqualTo((byte) 3);
      Parameters:
      other - the given value to compare the actual value to.
      Returns:
      this assertion object.
      Throws:
      AssertionError - if the actual value is null.
      AssertionError - if the actual value is less than the given one.
    • isBetween

      public SELF isBetween(Byte start, Byte end)
      Verifies that the actual value is in [start, end] range (start included, end included).

      Example:

       // assertions will pass
       assertThat((byte) 1).isBetween((byte) -1, (byte) 2);
       assertThat((byte) 1).isBetween((byte) 1, (byte) 2);
       assertThat((byte) 1).isBetween((byte) 0, (byte) 1);
      
       // assertion will fail
       assertThat((byte) 1).isBetween((byte) 2, (byte) 3);
      Specified by:
      isBetween in interface ComparableAssert<SELF extends AbstractByteAssert<SELF>,Byte>
      Specified by:
      isBetween in interface NumberAssert<SELF extends AbstractByteAssert<SELF>,Byte>
      Overrides:
      isBetween in class AbstractComparableAssert<SELF extends AbstractByteAssert<SELF>,Byte>
      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.
    • isStrictlyBetween

      public SELF isStrictlyBetween(Byte start, Byte end)
      Verifies that the actual value is in ]start, end[ range (start excluded, end excluded).

      Example:

       // assertion will pass
       assertThat((byte) 1).isStrictlyBetween((byte) -1, (byte) 2);
      
       // assertions will fail
       assertThat((byte) 1).isStrictlyBetween((byte) 1, (byte) 2);
       assertThat((byte) 1).isStrictlyBetween((byte) 0, (byte) 1);
       assertThat((byte) 1).isStrictlyBetween((byte) 2, (byte) 3);
      Specified by:
      isStrictlyBetween in interface ComparableAssert<SELF extends AbstractByteAssert<SELF>,Byte>
      Specified by:
      isStrictlyBetween in interface NumberAssert<SELF extends AbstractByteAssert<SELF>,Byte>
      Overrides:
      isStrictlyBetween in class AbstractComparableAssert<SELF extends AbstractByteAssert<SELF>,Byte>
      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.
    • isCloseTo

      public SELF isCloseTo(byte expected, Offset<Byte> offset)
      Verifies that the actual number is close to the given one within the given offset value.

      When abs(actual - expected) == offset value, the assertion:

      Breaking change since 2.9.0/3.9.0: using Assertions.byLessThan(Byte) implies a strict comparison, use Assertions.within(Byte) to get the old behavior.

      Examples:

       // assertions will pass:
       assertThat((byte) 5).isCloseTo((byte) 7, within((byte) 3));
       assertThat((byte) 5).isCloseTo((byte) 7, byLessThan((byte) 3));
      
       // if difference is exactly equals to the offset, it's ok ...
       assertThat((byte) 5).isCloseTo((byte) 7, within((byte) 2));
       // ... but not with byLessThan which implies a strict comparison
       assertThat((byte) 5).isCloseTo((byte) 7, byLessThan((byte) 2)); // FAIL
      
       // assertions will fail
       assertThat((byte) 5).isCloseTo((byte) 7, within((byte) 1));
       assertThat((byte) 5).isCloseTo((byte) 7, byLessThan((byte) 1));
       assertThat((byte) 5).isCloseTo((byte) 7, byLessThan((byte) 2));
      Parameters:
      expected - the given int to compare the actual value to.
      offset - the given positive offset.
      Returns:
      this assertion object.
      Throws:
      NullPointerException - if the given offset is null.
      AssertionError - if the actual value is not close enough to the given one.
    • isNotCloseTo

      public SELF isNotCloseTo(byte expected, Offset<Byte> offset)
      Verifies that the actual number is not close to the given one by less than the given offset.

      When abs(actual - expected) == offset value, the assertion:

      Breaking change since 2.9.0/3.9.0: using Assertions.byLessThan(Byte) implies a strict comparison, use Assertions.within(Byte) to get the old behavior.

      Examples:

       // assertions will pass:
       assertThat((byte) 5).isNotCloseTo((byte) 7, byLessThan((byte) 1));
       assertThat((byte) 5).isNotCloseTo((byte) 7, within((byte) 1));
       // diff == offset but isNotCloseTo succeeds as we use byLessThan
       assertThat((byte) 5).isNotCloseTo((byte) 7, byLessThan((byte) 2));
      
       // assertions will fail
       assertThat((byte) 5).isNotCloseTo((byte) 7, within((byte) 2));
       assertThat((byte) 5).isNotCloseTo((byte) 7, byLessThan((byte) 3));
      Parameters:
      expected - the given int to compare the actual value to.
      offset - the given positive offset.
      Returns:
      this assertion object.
      Throws:
      NullPointerException - if the given offset is null.
      AssertionError - if the actual value is close to the given one.
      Since:
      2.6.0 / 3.6.0
      See Also:
    • isCloseTo

      public SELF isCloseTo(Byte expected, Offset<Byte> offset)
      Verifies that the actual number is close to the given one within the given offset value.

      When abs(actual - expected) == offset value, the assertion:

      Breaking change since 2.9.0/3.9.0: using Assertions.byLessThan(Byte) implies a strict comparison, use Assertions.within(Byte) to get the old behavior.

      Examples:

       // assertions will pass:
       assertThat((byte) 5).isCloseTo((byte) 7, within((byte) 3));
       assertThat((byte) 5).isCloseTo((byte) 7, byLessThan((byte) 3));
      
       // if difference is exactly equals to the offset, it's ok ...
       assertThat((byte) 5).isCloseTo((byte) 7, within((byte) 2));
       // ... but not with byLessThan which implies a strict comparison
       assertThat((byte) 5).isCloseTo((byte) 7, byLessThan((byte) 2)); // FAIL
      
       // assertions will fail
       assertThat((byte) 5).isCloseTo((byte) 7, within((byte) 1));
       assertThat((byte) 5).isCloseTo((byte) 7, byLessThan((byte) 1));
       assertThat((byte) 5).isCloseTo((byte) 7, byLessThan((byte) 2));
      Specified by:
      isCloseTo in interface NumberAssert<SELF extends AbstractByteAssert<SELF>,Byte>
      Parameters:
      expected - the given int to compare the actual value to.
      offset - the given positive offset.
      Returns:
      this assertion object.
      Throws:
      NullPointerException - if the given offset is null.
      AssertionError - if the actual value is not close enough to the given one.
    • isNotCloseTo

      public SELF isNotCloseTo(Byte expected, Offset<Byte> offset)
      Verifies that the actual number is not close to the given one by less than the given offset.

      When abs(actual - expected) == offset value, the assertion:

      Breaking change since 2.9.0/3.9.0: using Assertions.byLessThan(Byte) implies a strict comparison, use Assertions.within(Byte) to get the old behavior.

      Examples:

       // assertions will pass:
       assertThat((byte) 5).isNotCloseTo((byte) 7, byLessThan((byte) 1));
       assertThat((byte) 5).isNotCloseTo((byte) 7, within((byte) 1));
       // diff == offset but isNotCloseTo succeeds as we use byLessThan
       assertThat((byte) 5).isNotCloseTo((byte) 7, byLessThan((byte) 2));
      
       // assertions will fail
       assertThat((byte) 5).isNotCloseTo((byte) 7, within((byte) 2));
       assertThat((byte) 5).isNotCloseTo((byte) 7, byLessThan((byte) 3));
      Specified by:
      isNotCloseTo in interface NumberAssert<SELF extends AbstractByteAssert<SELF>,Byte>
      Parameters:
      expected - the given int to compare the actual value to.
      offset - the given positive offset.
      Returns:
      this assertion object.
      Throws:
      NullPointerException - if the given offset is null.
      AssertionError - if the actual value is close to the given one.
      Since:
      2.6.0 / 3.6.0
      See Also:
    • isCloseTo

      public SELF isCloseTo(Byte 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 byte:

       // assertions will pass:
       assertThat((byte) 11).isCloseTo(Byte.valueOf(10), withinPercentage((byte) 20));
      
       // if difference is exactly equals to the computed offset (1), it's ok
       assertThat((byte) 11).isCloseTo(Byte.valueOf(10), withinPercentage((byte) 10));
      
       // assertion will fail
       assertThat((byte) 11).isCloseTo(Byte.valueOf(10), withinPercentage((byte) 5));
      Specified by:
      isCloseTo in interface NumberAssert<SELF extends AbstractByteAssert<SELF>,Byte>
      Parameters:
      expected - the given number to compare the actual value to.
      percentage - the given positive percentage.
      Returns:
      this assertion object.
      Throws:
      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.
    • isNotCloseTo

      public SELF isNotCloseTo(Byte expected, Percentage percentage)
      Verifies that the actual number is not close to the given one b the given percentage.
      If difference is equal to the percentage value, the assertion fails.

      Example with byte:

       // assertion will pass:
       assertThat((byte) 11).isNotCloseTo(Byte.valueOf(10), withinPercentage((byte) 5));
      
       // assertions will fail
       assertThat((byte) 11).isNotCloseTo(Byte.valueOf(10), withinPercentage((byte) 10));
       assertThat((byte) 11).isNotCloseTo(Byte.valueOf(10), withinPercentage((byte) 20));
      Specified by:
      isNotCloseTo in interface NumberAssert<SELF extends AbstractByteAssert<SELF>,Byte>
      Parameters:
      expected - the given number to compare the actual value to.
      percentage - the given positive percentage.
      Returns:
      this assertion object.
      Throws:
      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.
      Since:
      2.6.0 / 3.6.0
    • isCloseTo

      public SELF isCloseTo(byte 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 byte:

       // assertions will pass:
       assertThat((byte) 11).isCloseTo((byte) 10, withinPercentage((byte) 20));
      
       // assertions will fail
       assertThat((byte) 11).isCloseTo((byte) 10, withinPercentage((byte) 10));
       assertThat((byte) 11).isCloseTo((byte) 10, withinPercentage((byte) 5));
      Parameters:
      expected - the given number to compare the actual value to.
      percentage - the given positive percentage.
      Returns:
      this assertion object.
      Throws:
      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.
    • isNotCloseTo

      public SELF isNotCloseTo(byte 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 byte:

       // assertion will pass:
       assertThat((byte) 11).isNotCloseTo((byte) 10, withinPercentage((byte) 5));
      
       // assertions will fail
       assertThat((byte) 11).isNotCloseTo((byte) 10, withinPercentage((byte) 10));
       assertThat((byte) 11).isNotCloseTo((byte) 10, withinPercentage((byte) 20));
      Parameters:
      expected - the given number to compare the actual value to.
      percentage - the given positive percentage.
      Returns:
      this assertion object.
      Throws:
      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.
      Since:
      2.6.0 / 3.6.0
    • usingComparator

      public SELF usingComparator(Comparator<? super Byte> customComparator)
      Description copied from class: AbstractAssert
      Use the given custom comparator instead of relying on actual type A equals method for incoming assertion checks.

      The custom comparator is bound to assertion instance, meaning that if a new assertion instance is created, the default comparison strategy will be used.

      Examples :

       // frodo and sam are instances of Character with Hobbit race (obviously :).
       // raceComparator implements Comparator<Character>
       assertThat(frodo).usingComparator(raceComparator).isEqualTo(sam);
      Specified by:
      usingComparator in interface Assert<SELF extends AbstractByteAssert<SELF>,Byte>
      Overrides:
      usingComparator in class AbstractComparableAssert<SELF extends AbstractByteAssert<SELF>,Byte>
      Parameters:
      customComparator - the comparator to use for the incoming assertion checks.
      Returns:
      this assertion object.
    • usingComparator

      public SELF usingComparator(Comparator<? super Byte> customComparator, String customComparatorDescription)
      Description copied from class: AbstractAssert
      Use the given custom comparator instead of relying on actual type A equals method for incoming assertion checks.

      The custom comparator is bound to assertion instance, meaning that if a new assertion instance is created, the default comparison strategy will be used.

      Examples :

       // frodo and sam are instances of Character with Hobbit race (obviously :).
       // raceComparator implements Comparator<Character>
       assertThat(frodo).usingComparator(raceComparator, "Hobbit Race Comparator").isEqualTo(sam);
      Specified by:
      usingComparator in interface Assert<SELF extends AbstractByteAssert<SELF>,Byte>
      Overrides:
      usingComparator in class AbstractComparableAssert<SELF extends AbstractByteAssert<SELF>,Byte>
      Parameters:
      customComparator - the comparator to use for the incoming assertion checks.
      customComparatorDescription - comparator description to be used in assertion error messages
      Returns:
      this assertion object.
    • usingDefaultComparator

      public SELF usingDefaultComparator()
      Description copied from class: AbstractAssert
      Revert to standard comparison for the incoming assertion checks.

      This method should be used to disable a custom comparison strategy set by calling usingComparator.

      Specified by:
      usingDefaultComparator in interface Assert<SELF extends AbstractByteAssert<SELF>,Byte>
      Overrides:
      usingDefaultComparator in class AbstractComparableAssert<SELF extends AbstractByteAssert<SELF>,Byte>
      Returns:
      this assertion object.