Interface ObjectEnumerableAssert<S extends ObjectEnumerableAssert<S,​T>,​T>

    • Method Detail

      • contains

        S contains​(T... values)
        Verifies that the actual group contains the given values, in any order.
        Parameters:
        values - the given values.
        Returns:
        this assertion object.
        Throws:
        java.lang.NullPointerException - if the given argument is null.
        java.lang.IllegalArgumentException - if the given argument is an empty array.
        java.lang.AssertionError - if the actual group is null.
        java.lang.AssertionError - if the actual group does not contain the given values.
      • containsOnly

        S containsOnly​(T... values)
        Verifies that the actual group contains only the given values and nothing else, in any order.
        Parameters:
        values - the given values.
        Returns:
        this assertion object.
        Throws:
        java.lang.NullPointerException - if the given argument is null.
        java.lang.IllegalArgumentException - if the given argument is an empty array.
        java.lang.AssertionError - if the actual group is null.
        java.lang.AssertionError - if the actual group does not contain the given values, i.e. the actual group contains some or none of the given values, or the actual group contains more values than the given ones.
      • containsExactly

        S containsExactly​(T... values)
        Verifies that the actual group contains only the given values and nothing else, in order.
        This assertion should only be used with Iterable that have a consistent iteration order (i.e. don't use it with HashSet, prefer containsOnly(Object...) in that case).

        Example :

         Iterable<Ring> elvesRings = newArrayList(vilya, nenya, narya);
         
         // assertion will pass
         assertThat(elvesRings).containsExactly(vilya, nenya, narya);
         
         // assertion will fail as actual and expected orders differ.
         assertThat(elvesRings).containsExactly(nenya, vilya, narya);
         
        Parameters:
        values - the given values.
        Returns:
        this assertion object.
        Throws:
        java.lang.NullPointerException - if the given argument is null.
        java.lang.IllegalArgumentException - if the given argument is an empty array.
        java.lang.AssertionError - if the actual group is null.
        java.lang.AssertionError - if the actual group does not contain the given values with same order, i.e. the actual group contains some or none of the given values, or the actual group contains more values than the given ones or values are not in same order.
      • containsSequence

        S containsSequence​(T... sequence)
        Verifies that the actual group contains the given sequence, without any other values between them.
        Parameters:
        sequence - the sequence of objects to look for.
        Returns:
        this assertion object.
        Throws:
        java.lang.AssertionError - if the actual group is null.
        java.lang.AssertionError - if the given array is null.
        java.lang.AssertionError - if the actual group does not contain the given sequence.
      • doesNotContain

        S doesNotContain​(T... values)
        Verifies that the actual group does not contain the given values.
        Parameters:
        values - the given values.
        Returns:
        this assertion object.
        Throws:
        java.lang.NullPointerException - if the given argument is null.
        java.lang.IllegalArgumentException - if the given argument is an empty array.
        java.lang.AssertionError - if the actual group is null.
        java.lang.AssertionError - if the actual group contains any of the given values.
      • doesNotHaveDuplicates

        S doesNotHaveDuplicates()
        Verifies that the actual group does not contain duplicates.
        Returns:
        this assertion object.
        Throws:
        java.lang.AssertionError - if the actual group is null.
        java.lang.AssertionError - if the actual group contains duplicates.
      • startsWith

        S startsWith​(T... sequence)
        Verifies that the actual group starts with the given sequence of objects, without any other objects between them. Similar to containsSequence(Object...), but it also verifies that the first element in the sequence is also first element of the actual group.
        Parameters:
        sequence - the sequence of objects to look for.
        Returns:
        this assertion object.
        Throws:
        java.lang.NullPointerException - if the given argument is null.
        java.lang.IllegalArgumentException - if the given argument is an empty array.
        java.lang.AssertionError - if the actual group is null.
        java.lang.AssertionError - if the actual group does not start with the given sequence of objects.
      • endsWith

        S endsWith​(T... sequence)
        Verifies that the actual group ends with the given sequence of objects, without any other objects between them. Similar to containsSequence(Object...), but it also verifies that the last element in the sequence is also last element of the actual group.
        Parameters:
        sequence - the sequence of objects to look for.
        Returns:
        this assertion object.
        Throws:
        java.lang.NullPointerException - if the given argument is null.
        java.lang.IllegalArgumentException - if the given argument is an empty array.
        java.lang.AssertionError - if the actual group is null.
        java.lang.AssertionError - if the actual group does not end with the given sequence of objects.
      • containsNull

        S containsNull()
        Verifies that the actual group contains at least a null element.
        Returns:
        this assertion object.
        Throws:
        java.lang.AssertionError - if the actual group is null.
        java.lang.AssertionError - if the actual group does not contain a null element.
      • doesNotContainNull

        S doesNotContainNull()
        Verifies that the actual group does not contain null elements.
        Returns:
        this assertion object.
        Throws:
        java.lang.AssertionError - if the actual group is null.
        java.lang.AssertionError - if the actual group contains a null element.
      • are

        S are​(Condition<? super T> condition)
        Verifies that each element value satisfies the given condition
        Parameters:
        condition - the given condition.
        Returns:
        this object.
        Throws:
        java.lang.NullPointerException - if the given condition is null.
        java.lang.AssertionError - if a element cannot be cast to E.
        java.lang.AssertionError - if one or more element not satisfy the given condition.
      • areNot

        S areNot​(Condition<? super T> condition)
        Verifies that each element value not satisfies the given condition
        Parameters:
        condition - the given condition.
        Returns:
        this object.
        Throws:
        java.lang.NullPointerException - if the given condition is null.
        java.lang.AssertionError - if a element cannot be cast to E.
        java.lang.AssertionError - if one or more element satisfy the given condition.
      • have

        S have​(Condition<? super T> condition)
        Verifies that each element value satisfies the given condition
        Parameters:
        condition - the given condition.
        Returns:
        this object.
        Throws:
        java.lang.NullPointerException - if the given condition is null.
        java.lang.AssertionError - if a element cannot be cast to E.
        java.lang.AssertionError - if one or more element not satisfy the given condition.
      • doNotHave

        S doNotHave​(Condition<? super T> condition)
        Verifies that each element value not satisfies the given condition
        Parameters:
        condition - the given condition.
        Returns:
        this object.
        Throws:
        java.lang.NullPointerException - if the given condition is null.
        java.lang.AssertionError - if a element cannot be cast to E.
        java.lang.AssertionError - if one or more element satisfy the given condition.
      • areAtLeast

        S areAtLeast​(int n,
                     Condition<? super T> condition)
        Verifies that there is at least n elements in the actual group satisfying the given condition.
        Parameters:
        n - the minimum number of times the condition should be verified.
        condition - the given condition.
        Returns:
        this object.
        Throws:
        java.lang.NullPointerException - if the given condition is null.
        java.lang.AssertionError - if an element can not be cast to E.
        java.lang.AssertionError - if the number of elements satisfying the given condition is < n.
      • areNotAtLeast

        S areNotAtLeast​(int n,
                        Condition<? super T> condition)
        Verifies that there is at least n elements in the actual group not satisfying the given condition.
        Parameters:
        n - the number of times the condition should not be verified at least.
        condition - the given condition.
        Returns:
        this object.
        Throws:
        java.lang.NullPointerException - if the given condition is null.
        java.lang.AssertionError - if a element cannot be cast to E.
        java.lang.AssertionError - if the number of elements not satisfying the given condition is < n.
      • areAtMost

        S areAtMost​(int n,
                    Condition<? super T> condition)
        Verifies that there is at most n elements in the actual group satisfying the given condition.
        Parameters:
        n - the number of times the condition should be at most verified.
        condition - the given condition.
        Returns:
        this object.
        Throws:
        java.lang.NullPointerException - if the given condition is null.
        java.lang.AssertionError - if a element cannot be cast to E.
        java.lang.AssertionError - if the number of elements satisfying the given condition is > n.
      • areNotAtMost

        S areNotAtMost​(int n,
                       Condition<? super T> condition)
        Verifies that there is at most n elements in the actual group not satisfying the given condition.
        Parameters:
        n - the number of times the condition should not be verified at most.
        condition - the given condition.
        Returns:
        this object.
        Throws:
        java.lang.NullPointerException - if the given condition is null.
        java.lang.AssertionError - if a element cannot be cast to E.
        java.lang.AssertionError - if the number of elements not satisfying the given condition is > n.
      • areExactly

        S areExactly​(int n,
                     Condition<? super T> condition)
        Verifies that there is exactly n elements in the actual group satisfying the given condition.
        Parameters:
        n - the exact number of times the condition should be verified.
        condition - the given condition.
        Returns:
        this object.
        Throws:
        java.lang.NullPointerException - if the given condition is null.
        java.lang.AssertionError - if a element cannot be cast to E.
        java.lang.AssertionError - if the number of elements satisfying the given condition is ≠ n.
      • areNotExactly

        S areNotExactly​(int n,
                        Condition<? super T> condition)
        Verifies that there is exactly n elements in the actual group not satisfying the given condition.
        Parameters:
        n - the exact number of times the condition should not be verified.
        condition - the given condition.
        Returns:
        this object.
        Throws:
        java.lang.NullPointerException - if the given condition is null.
        java.lang.AssertionError - if a element cannot be cast to E.
        java.lang.AssertionError - if the number of elements not satisfying the given condition is ≠ n.
      • containsAll

        S containsAll​(java.lang.Iterable<? extends T> iterable)
        Verifies that the actual group contains all the elements of given Iterable, in any order.
        Parameters:
        iterable - the given Iterable we will get elements from.
        Returns:
        this assertion object.
        Throws:
        java.lang.NullPointerException - if the given argument is null.
        java.lang.AssertionError - if the actual group is null.
        java.lang.AssertionError - if the actual group does not contain all the elements of given Iterable.