|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use IntArrayAssert | |
---|---|
org.fest.assertions.api |
Uses of IntArrayAssert in org.fest.assertions.api |
---|
Methods in org.fest.assertions.api that return IntArrayAssert | |
---|---|
static IntArrayAssert |
Assertions.assertThat(int[] actual)
Creates a new instance of . |
IntArrayAssert |
IntArrayAssert.contains(int... values)
Verifies that the actual array contains the given values, in any order. |
IntArrayAssert |
IntArrayAssert.contains(int value,
Index index)
Verifies that the actual array contains the given value at the given index. |
IntArrayAssert |
IntArrayAssert.containsOnly(int... values)
Verifies that the actual array contains only the given values and nothing else, in any order. |
IntArrayAssert |
IntArrayAssert.containsSequence(int... sequence)
Verifies that the actual array contains the given sequence, without any other values between them. |
IntArrayAssert |
IntArrayAssert.doesNotContain(int... values)
Verifies that the actual array does not contain the given values. |
IntArrayAssert |
IntArrayAssert.doesNotContain(int value,
Index index)
Verifies that the actual array does not contain the given value at the given index. |
IntArrayAssert |
IntArrayAssert.doesNotHaveDuplicates()
Verifies that the actual array does not contain duplicates. |
IntArrayAssert |
IntArrayAssert.endsWith(int... sequence)
Verifies that the actual array ends with the given sequence of values, without any other values between them. |
IntArrayAssert |
IntArrayAssert.hasSize(int expected)
Verifies that the number of values in the actual group is equal to the given one. |
IntArrayAssert |
IntArrayAssert.isNotEmpty()
Verifies that the actual group of values is not empty. |
IntArrayAssert |
IntArrayAssert.isSorted()
Verifies that the actual array is sorted into ascending order according to the natural ordering of its elements. |
IntArrayAssert |
IntArrayAssert.isSortedAccordingTo(Comparator<? extends Integer> comparator)
Verifies that the actual array is sorted according to the given comparator. |
IntArrayAssert |
IntArrayAssert.startsWith(int... sequence)
Verifies that the actual array starts with the given sequence of values, without any other values between them. |
IntArrayAssert |
IntArrayAssert.usingComparator(Comparator<?> customComparator)
|
IntArrayAssert |
IntArrayAssert.usingDefaultComparator()
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |