Uses of Class
org.assertj.core.api.AtomicIntegerArrayAssert
Packages that use AtomicIntegerArrayAssert
-
Uses of AtomicIntegerArrayAssert in org.assertj.core.api
Fields in org.assertj.core.api with type parameters of type AtomicIntegerArrayAssertMethods in org.assertj.core.api that return AtomicIntegerArrayAssertModifier and TypeMethodDescriptionstatic AtomicIntegerArrayAssertAssertions.assertThat(AtomicIntegerArray actual) Create int[] assertion forAtomicIntegerArray.static AtomicIntegerArrayAssertJava6Assertions.assertThat(AtomicIntegerArray actual) Deprecated.Create int[] assertion forAtomicIntegerArray.default AtomicIntegerArrayAssertJava6StandardSoftAssertionsProvider.assertThat(AtomicIntegerArray actual) Create assertion forAtomicIntegerArray.default AtomicIntegerArrayAssertWithAssertions.assertThat(AtomicIntegerArray actual) Create int[] assertion forAtomicIntegerArray.static AtomicIntegerArrayAssertAssumptions.assumeThat(AtomicIntegerArray actual) Creates int[] assumption forAtomicIntegerArray.default AtomicIntegerArrayAssertWithAssumptions.assumeThat(AtomicIntegerArray actual) Creates int[] assumption forAtomicIntegerArray.AtomicIntegerArrayAssert.contains(int... values) Verifies that the actualAtomicIntegerArraycontains the given values, in any order.Verifies that the actual atomic array contains the given value at the given index.AtomicIntegerArrayAssert.containsAnyOf(int... values) Verifies that the actual array contains at least one of the given values.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.static AtomicIntegerArrayAssertBDDAssumptions.given(AtomicIntegerArray actual) Creates a new assumption's instance for anAtomicIntegerArrayvalue.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.hasSizeBetween(int lowerBoundary, int higherBoundary) Verifies that the number of values in the actual array is between the given boundaries (inclusive).AtomicIntegerArrayAssert.hasSizeGreaterThan(int boundary) Verifies that the number of values in the actual array is greater than the given boundary.AtomicIntegerArrayAssert.hasSizeGreaterThanOrEqualTo(int boundary) Verifies that the number of values in the actual array is greater than or equal to the given boundary.AtomicIntegerArrayAssert.hasSizeLessThan(int boundary) Verifies that the number of values in the actual array is less than the given boundary.AtomicIntegerArrayAssert.hasSizeLessThanOrEqualTo(int boundary) Verifies that the number of values in the actual array is less than or equal to the given boundary.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 AtomicIntegerArrayAssertBDDAssertions.then(AtomicIntegerArray actual) Create assertion forAtomicIntegerArray.static AtomicIntegerArrayAssertJava6BDDAssertions.then(AtomicIntegerArray actual) Deprecated.Create int[] assertion forAtomicIntegerArray.default AtomicIntegerArrayAssertJava6BDDSoftAssertionsProvider.then(AtomicIntegerArray actual) Create 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 Integerequalsmethod to compare elements for incoming assertion checks.