static AtomicIntegerArrayAssert |
Assertions.assertThat(java.util.concurrent.atomic.AtomicIntegerArray actual) |
Create int[] assertion for AtomicIntegerArray .
|
AtomicIntegerArrayAssert |
Java6AbstractStandardSoftAssertions.assertThat(java.util.concurrent.atomic.AtomicIntegerArray actual) |
Create assertion for AtomicIntegerArray .
|
static AtomicIntegerArrayAssert |
Java6Assertions.assertThat(java.util.concurrent.atomic.AtomicIntegerArray actual) |
Create int[] assertion for AtomicIntegerArray .
|
default AtomicIntegerArrayAssert |
WithAssertions.assertThat(java.util.concurrent.atomic.AtomicIntegerArray actual) |
Create int[] assertion for AtomicIntegerArray .
|
AtomicIntegerArrayAssert |
AtomicIntegerArrayAssert.contains(int... values) |
Verifies that the actual AtomicIntegerArray contains the given values, in any order.
|
AtomicIntegerArrayAssert |
AtomicIntegerArrayAssert.contains(int value,
Index index) |
Verifies that the actual atomic array contains the given value at the given index.
|
AtomicIntegerArrayAssert |
AtomicIntegerArrayAssert.containsExactly(int... values) |
Verifies that the actual AtomicIntegerArray contains only the given values and nothing else, in order.
|
AtomicIntegerArrayAssert |
AtomicIntegerArrayAssert.containsExactlyInAnyOrder(int... values) |
Verifies that the actual AtomicIntegerArray contains exactly the given values and nothing else, in any order.
|
AtomicIntegerArrayAssert |
AtomicIntegerArrayAssert.containsOnly(int... values) |
Verifies that the actual atomic array contains only the given values and nothing else, in any order.
|
AtomicIntegerArrayAssert |
AtomicIntegerArrayAssert.containsOnlyOnce(int... values) |
Verifies that the actual atomic array contains the given values only once.
|
AtomicIntegerArrayAssert |
AtomicIntegerArrayAssert.containsSequence(int... sequence) |
Verifies that the actual atomic array contains the given sequence, without any other values between them.
|
AtomicIntegerArrayAssert |
AtomicIntegerArrayAssert.containsSubsequence(int... subsequence) |
Verifies that the actual atomic array contains the given subsequence (possibly with other values between them).
|
AtomicIntegerArrayAssert |
AtomicIntegerArrayAssert.doesNotContain(int... values) |
Verifies that the actual atomic array does not contain the given values.
|
AtomicIntegerArrayAssert |
AtomicIntegerArrayAssert.doesNotContain(int value,
Index index) |
Verifies that the actual atomic array does not contain the given value at the given index.
|
AtomicIntegerArrayAssert |
AtomicIntegerArrayAssert.doesNotHaveDuplicates() |
Verifies that the actual atomic array does not contain duplicates.
|
AtomicIntegerArrayAssert |
AtomicIntegerArrayAssert.endsWith(int... sequence) |
Verifies that the actual atomic array ends with the given sequence of values, without any other values between them.
|
AtomicIntegerArrayAssert |
AtomicIntegerArrayAssert.hasArray(int[] expected) |
Verifies that the AtomicIntegerArray has the given array.
|
AtomicIntegerArrayAssert |
AtomicIntegerArrayAssert.hasSameSizeAs(java.lang.Iterable<?> other) |
Verifies that the AtomicIntegerArray has the same size as given Iterable .
|
AtomicIntegerArrayAssert |
AtomicIntegerArrayAssert.hasSize(int expected) |
Verifies that the number of values in the AtomicIntegerArray is equal to the given one.
|
AtomicIntegerArrayAssert |
AtomicIntegerArrayAssert.isNotEmpty() |
Verifies that the AtomicIntegerArray is not empty.
|
AtomicIntegerArrayAssert |
AtomicIntegerArrayAssert.isSorted() |
Verifies that the actual AtomicIntegerArray is sorted in ascending order according to the natural ordering of its elements.
|
AtomicIntegerArrayAssert |
AtomicIntegerArrayAssert.isSortedAccordingTo(java.util.Comparator<? super java.lang.Integer> comparator) |
Verifies that the actual AtomicIntegerArray is sorted according to the given comparator. Empty arrays are considered sorted whatever
the comparator is. One element arrays are considered sorted if the element is compatible with comparator, otherwise an
AssertionError is thrown.
|
AtomicIntegerArrayAssert |
AtomicIntegerArrayAssert.startsWith(int... sequence) |
Verifies that the actual atomic array starts with the given sequence of values, without any other values between them.
|
static AtomicIntegerArrayAssert |
BDDAssertions.then(java.util.concurrent.atomic.AtomicIntegerArray actual) |
Create assertion for AtomicIntegerArray .
|
AtomicIntegerArrayAssert |
Java6AbstractBDDSoftAssertions.then(java.util.concurrent.atomic.AtomicIntegerArray actual) |
Create assertion for AtomicIntegerArray .
|
static AtomicIntegerArrayAssert |
Java6BDDAssertions.then(java.util.concurrent.atomic.AtomicIntegerArray actual) |
Create int[] assertion for AtomicIntegerArray .
|
AtomicIntegerArrayAssert |
AtomicIntegerArrayAssert.usingDefaultElementComparator() |
Revert to standard comparison for incoming assertion group element checks.
|
AtomicIntegerArrayAssert |
AtomicIntegerArrayAssert.usingElementComparator(java.util.Comparator<? super java.lang.Integer> customComparator) |
Use given custom comparator instead of relying on Integer equals method to compare elements for incoming assertion checks.
|