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



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