Interface ComparableAssert<S,​A extends java.lang.Comparable<? super A>>

    • Method Detail

      • isLessThan

        S isLessThan​(A other)
        Verifies that the actual value is less than the given one.
        Parameters:
        other - the given value to compare the actual value to.
        Returns:
        this assertion object.
        Throws:
        java.lang.AssertionError - if the actual value is null.
        java.lang.AssertionError - if the actual value is equal to or greater than the given one.
      • isLessThanOrEqualTo

        S isLessThanOrEqualTo​(A other)
        Verifies that the actual value is less than or equal to the given one.
        Parameters:
        other - the given value to compare the actual value to.
        Returns:
        this assertion object.
        Throws:
        java.lang.AssertionError - if the actual value is null.
        java.lang.AssertionError - if the actual value is greater than the given one.
      • isGreaterThan

        S isGreaterThan​(A other)
        Verifies that the actual value is greater than the given one.
        Parameters:
        other - the given value to compare the actual value to.
        Returns:
        this assertion object.
        Throws:
        java.lang.AssertionError - if the actual value is null.
        java.lang.AssertionError - if the actual value is equal to or less than the given one.
      • isGreaterThanOrEqualTo

        S isGreaterThanOrEqualTo​(A other)
        Verifies that the actual value is greater than or equal to the given one.
        Parameters:
        other - the given value to compare the actual value to.
        Returns:
        this assertion object.
        Throws:
        java.lang.AssertionError - if the actual value is null.
        java.lang.AssertionError - if the actual value is less than the given one.