Uses of Class
org.assertj.core.api.AtomicIntegerArrayAssert
Packages that use AtomicIntegerArrayAssert
-
Uses of AtomicIntegerArrayAssert in org.assertj.core.api
Methods in org.assertj.core.api that return AtomicIntegerArrayAssertModifier and TypeMethodDescriptionstatic AtomicIntegerArrayAssert
Assertions.assertThat
(AtomicIntegerArray actual) Create int[] assertion forAtomicIntegerArray
.Java6AbstractStandardSoftAssertions.assertThat
(AtomicIntegerArray actual) Create assertion forAtomicIntegerArray
.static AtomicIntegerArrayAssert
Java6Assertions.assertThat
(AtomicIntegerArray actual) Create int[] assertion forAtomicIntegerArray
.default AtomicIntegerArrayAssert
WithAssertions.assertThat
(AtomicIntegerArray actual) Create int[] assertion forAtomicIntegerArray
.AtomicIntegerArrayAssert.contains
(int... values) Verifies that the actualAtomicIntegerArray
contains the given values, in any order.Verifies that the actual atomic array contains the given value at the given index.AtomicIntegerArrayAssert.containsExactly
(int... values) Verifies that the actual AtomicIntegerArray contains only the given values and nothing else, in order.AtomicIntegerArrayAssert.containsExactlyInAnyOrder
(int... values) Verifies that the actual AtomicIntegerArray contains exactly the given values and nothing else, in any order.AtomicIntegerArrayAssert.containsOnly
(int... values) Verifies that the actual atomic array contains only the given values and nothing else, in any order.AtomicIntegerArrayAssert.containsOnlyOnce
(int... values) Verifies that the actual atomic array contains the given values only once.AtomicIntegerArrayAssert.containsSequence
(int... sequence) Verifies that the actual atomic array contains the given sequence, without any other values between them.AtomicIntegerArrayAssert.containsSubsequence
(int... subsequence) Verifies that the actual atomic array contains the given subsequence (possibly with other values between them).AtomicIntegerArrayAssert.doesNotContain
(int... values) Verifies that the actual atomic array does not contain the given values.AtomicIntegerArrayAssert.doesNotContain
(int value, Index index) Verifies that the actual atomic array does not contain the given value at the given index.AtomicIntegerArrayAssert.doesNotHaveDuplicates()
Verifies that the actual atomic array does not contain duplicates.AtomicIntegerArrayAssert.endsWith
(int... sequence) Verifies that the actual atomic array ends with the given sequence of values, without any other values between them.AtomicIntegerArrayAssert.hasArray
(int[] expected) Verifies that the AtomicIntegerArray has the given array.AtomicIntegerArrayAssert.hasSameSizeAs
(Iterable<?> other) Verifies that the AtomicIntegerArray has the same size as givenIterable
.AtomicIntegerArrayAssert.hasSize
(int expected) Verifies that the number of values in the AtomicIntegerArray is equal to the given one.AtomicIntegerArrayAssert.isNotEmpty()
Verifies that the AtomicIntegerArray is not empty.AtomicIntegerArrayAssert.isSorted()
Verifies that the actual AtomicIntegerArray is sorted in ascending order according to the natural ordering of its elements.AtomicIntegerArrayAssert.isSortedAccordingTo
(Comparator<? super 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.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
(AtomicIntegerArray actual) Create assertion forAtomicIntegerArray
.Java6AbstractBDDSoftAssertions.then
(AtomicIntegerArray actual) Create assertion forAtomicIntegerArray
.static AtomicIntegerArrayAssert
Java6BDDAssertions.then
(AtomicIntegerArray actual) Create int[] assertion forAtomicIntegerArray
.AtomicIntegerArrayAssert.usingDefaultElementComparator()
Revert to standard comparison for incoming assertion group element checks.AtomicIntegerArrayAssert.usingElementComparator
(Comparator<? super Integer> customComparator) Use given custom comparator instead of relying on Integerequals
method to compare elements for incoming assertion checks.