Uses of Class
org.fest.assertions.api.ObjectArrayAssert

Packages that use ObjectArrayAssert
org.fest.assertions.api   
 

Uses of ObjectArrayAssert in org.fest.assertions.api
 

Methods in org.fest.assertions.api that return ObjectArrayAssert
<E> ObjectArrayAssert<T>
ObjectArrayAssert.are(Condition<E> condition)
          Verifies that each element value satisfies the given condition
<E> ObjectArrayAssert<T>
ObjectArrayAssert.areAtLeast(int times, Condition<E> condition)
          Verifies that there is at least n elements in the actual group satisfying the given condition.
<E> ObjectArrayAssert<T>
ObjectArrayAssert.areAtMost(int times, Condition<E> condition)
          Verifies that there is at most n elements in the actual group satisfying the given condition.
<E> ObjectArrayAssert<T>
ObjectArrayAssert.areExactly(int times, Condition<E> condition)
          Verifies that there is exactly n elements in the actual group satisfying the given condition.
<E> ObjectArrayAssert<T>
ObjectArrayAssert.areNot(Condition<E> condition)
          Verifies that each element value not satisfies the given condition
<E> ObjectArrayAssert<T>
ObjectArrayAssert.areNotAtLeast(int times, Condition<E> condition)
          Verifies that there is at least n elements in the actual group not satisfying the given condition.
<E> ObjectArrayAssert<T>
ObjectArrayAssert.areNotAtMost(int times, Condition<E> condition)
          Verifies that there is at most n elements in the actual group not satisfying the given condition.
<E> ObjectArrayAssert<T>
ObjectArrayAssert.areNotExactly(int times, Condition<E> condition)
          Verifies that there is exactly n elements in the actual group not satisfying the given condition.
static
<T> ObjectArrayAssert<T>
Assertions.assertThat(T[] actual)
          Creates a new instance of ObjectArrayAssert.
 ObjectArrayAssert<T> ObjectArrayAssert.contains(Object... values)
          Verifies that the actual group contains the given values, in any order.
 ObjectArrayAssert<T> ObjectArrayAssert.contains(Object value, Index index)
          Verifies that the actual group contains the given object at the given index.
 ObjectArrayAssert<T> ObjectArrayAssert.containsAll(Iterable<? extends T> iterable)
          Verifies that the actual group contains all the elements of given Iterable, in any order.
 ObjectArrayAssert<T> ObjectArrayAssert.containsNull()
          Verifies that the actual group contains at least a null element.
 ObjectArrayAssert<T> ObjectArrayAssert.containsOnly(Object... values)
          Verifies that the actual group contains only the given values and nothing else, in any order.
 ObjectArrayAssert<T> ObjectArrayAssert.containsSequence(Object... sequence)
          Verifies that the actual group contains the given sequence, without any other values between them.
 ObjectArrayAssert<T> ObjectArrayAssert.doesNotContain(Object... values)
          Verifies that the actual group does not contain the given values.
 ObjectArrayAssert<T> ObjectArrayAssert.doesNotContain(Object value, Index index)
          Verifies that the actual group does not contain the given object at the given index.
 ObjectArrayAssert<T> ObjectArrayAssert.doesNotContainNull()
          Verifies that the actual group does not contain null elements.
 ObjectArrayAssert<T> ObjectArrayAssert.doesNotHaveDuplicates()
          Verifies that the actual group does not contain duplicates.
<E> ObjectArrayAssert<T>
ObjectArrayAssert.doNotHave(Condition<E> condition)
          Verifies that each element value not satisfies the given condition
<E> ObjectArrayAssert<T>
ObjectArrayAssert.doNotHaveAtLeast(int times, Condition<E> condition)
          This method is an alias ObjectEnumerableAssert.areNotAtLeast(int, Condition).
<E> ObjectArrayAssert<T>
ObjectArrayAssert.doNotHaveAtMost(int times, Condition<E> condition)
          This method is an alias ObjectEnumerableAssert.areNotAtMost(int, Condition).
<E> ObjectArrayAssert<T>
ObjectArrayAssert.doNotHaveExactly(int times, Condition<E> condition)
          This method is an alias ObjectEnumerableAssert.areNotExactly(int, Condition).
 ObjectArrayAssert<T> ObjectArrayAssert.endsWith(Object... sequence)
          Verifies that the actual group ends with the given sequence of objects, without any other objects between them.
 ObjectArrayAssert<T> ObjectArrayAssert.hasSameSizeAs(Iterable<?> other)
          Verifies that the actual group has the same size as given Iterable.
 ObjectArrayAssert<T> ObjectArrayAssert.hasSameSizeAs(Object[] other)
          Verifies that the actual group has the same size as given array.
 ObjectArrayAssert<T> ObjectArrayAssert.hasSize(int expected)
          Verifies that the number of values in the actual group is equal to the given one.
<E> ObjectArrayAssert<T>
ObjectArrayAssert.have(Condition<E> condition)
          Verifies that each element value satisfies the given condition
<E> ObjectArrayAssert<T>
ObjectArrayAssert.haveAtLeast(int times, Condition<E> condition)
          This method is an alias for ObjectEnumerableAssert.areAtLeast(int, Condition).
<E> ObjectArrayAssert<T>
ObjectArrayAssert.haveAtMost(int times, Condition<E> condition)
          This method is an alias ObjectEnumerableAssert.areAtMost(int, Condition).
<E> ObjectArrayAssert<T>
ObjectArrayAssert.haveExactly(int times, Condition<E> condition)
          This method is an alias ObjectEnumerableAssert.areExactly(int, Condition).
 ObjectArrayAssert<T> ObjectArrayAssert.isNotEmpty()
          Verifies that the actual group of values is not empty.
 ObjectArrayAssert<T> ObjectArrayAssert.isSorted()
          Verifies that the actual array is sorted into ascending order according to the natural ordering of its elements.
 ObjectArrayAssert<T> ObjectArrayAssert.isSortedAccordingTo(Comparator<? super T> comparator)
          Verifies that the actual array is sorted according to the given comparator.
 ObjectArrayAssert<T> ObjectArrayAssert.startsWith(Object... sequence)
          Verifies that the actual group starts with the given sequence of objects, without any other objects between them.
 ObjectArrayAssert<T> ObjectArrayAssert.usingDefaultElementComparator()
           
 ObjectArrayAssert<T> ObjectArrayAssert.usingElementComparator(Comparator<? super T> customComparator)
           
 



Copyright © 2007-2012 FEST (Fixtures for Easy Software Testing). All Rights Reserved.