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