Uses of Class
org.fest.assertions.api.BooleanArrayAssert
Packages that use BooleanArrayAssert
-
Uses of BooleanArrayAssert in org.fest.assertions.api
Methods in org.fest.assertions.api that return BooleanArrayAssertModifier and TypeMethodDescriptionstatic 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.Verifies that the actual array contains the given value at the given index.BooleanArrayAssert.containsOnly
(boolean... values) Verifies that the actual array contains only the given values and nothing else, in any order.BooleanArrayAssert.containsSequence
(boolean... sequence) Verifies that the actual array contains the given sequence, without any other values between them.BooleanArrayAssert.doesNotContain
(boolean... values) Verifies that the actual array does not contain the given values.BooleanArrayAssert.doesNotContain
(boolean value, Index index) Verifies that the actual array does not contain the given value at the given index.BooleanArrayAssert.doesNotHaveDuplicates()
Verifies that the actual array does not contain duplicates.BooleanArrayAssert.endsWith
(boolean... sequence) Verifies that the actual array ends with the given sequence of values, without any other values between them.BooleanArrayAssert.hasSameSizeAs
(Iterable<?> other) Verifies that the actual group has the same size as givenIterable
.BooleanArrayAssert.hasSameSizeAs
(Object[] other) Verifies that the actual group has the same size as given array.BooleanArrayAssert.hasSize
(int expected) Verifies that the number of values in the actual group is equal to the given one.BooleanArrayAssert.isNotEmpty()
Verifies that the actual group of values is not empty.BooleanArrayAssert.isSorted()
Verifies that the actual array is sorted into ascending order according to the natural ordering of its elements.BooleanArrayAssert.isSortedAccordingTo
(Comparator<? super Boolean> comparator) Verifies that the actual array is sorted according to the given comparator. Empty arrays are considered sorted whatever the comparator is. One element arrays are considered sorted if element is compatible with comparator, otherwise an AssertionError is thrown.BooleanArrayAssert.startsWith
(boolean... sequence) Verifies that the actual array starts with the given sequence of values, without any other values between them.BooleanArrayAssert.usingDefaultElementComparator()
Revert to standard comparison for incoming assertion group element checks.BooleanArrayAssert.usingElementComparator
(Comparator<? super Boolean> customComparator) Use given custom comparator instead of relying on actual type Aequals
method to compare group elements for incoming assertion checks.