|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
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 | ||
---|---|---|
|
ObjectArrayAssert.are(Condition<E> condition)
Verifies that each element value satisfies the given condition |
|
|
ObjectArrayAssert.areAtLeast(int times,
Condition<E> condition)
Verifies that there is at least n elements in the actual group satisfying the given condition. |
|
|
ObjectArrayAssert.areAtMost(int times,
Condition<E> condition)
Verifies that there is at most n elements in the actual group satisfying the given condition. |
|
|
ObjectArrayAssert.areExactly(int times,
Condition<E> condition)
Verifies that there is exactly n elements in the actual group satisfying the given condition. |
|
|
ObjectArrayAssert.areNot(Condition<E> condition)
Verifies that each element value not satisfies the given condition |
|
|
ObjectArrayAssert.areNotAtLeast(int times,
Condition<E> condition)
Verifies that there is at least n elements in the actual group not satisfying the given condition. |
|
|
ObjectArrayAssert.areNotAtMost(int times,
Condition<E> condition)
Verifies that there is at most n elements in the actual group not satisfying the given condition. |
|
|
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.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. |
|
|
ObjectArrayAssert.doNotHave(Condition<E> condition)
Verifies that each element value not satisfies the given condition |
|
|
ObjectArrayAssert.doNotHaveAtLeast(int times,
Condition<E> condition)
This method is an alias ObjectEnumerableAssert.areNotAtLeast(int, Condition) . |
|
|
ObjectArrayAssert.doNotHaveAtMost(int times,
Condition<E> condition)
This method is an alias ObjectEnumerableAssert.areNotAtMost(int, Condition) . |
|
|
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.hasSameSizeAs(Iterable<?> other)
Verifies that the actual group has the same size as given Iterable . |
|
ObjectArrayAssert |
ObjectArrayAssert.hasSameSizeAs(Object[] other)
Verifies that the actual group has the same size as given array. |
|
ObjectArrayAssert |
ObjectArrayAssert.hasSize(int expected)
Verifies that the number of values in the actual group is equal to the given one. |
|
|
ObjectArrayAssert.have(Condition<E> condition)
Verifies that each element value satisfies the given condition |
|
|
ObjectArrayAssert.haveAtLeast(int times,
Condition<E> condition)
This method is an alias for ObjectEnumerableAssert.areAtLeast(int, Condition) . |
|
|
ObjectArrayAssert.haveAtMost(int times,
Condition<E> condition)
This method is an alias ObjectEnumerableAssert.areAtMost(int, Condition) . |
|
|
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()
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |