Uses of Class
org.assertj.core.api.AtomicLongArrayAssert
Packages that use AtomicLongArrayAssert
-
Uses of AtomicLongArrayAssert in org.assertj.core.api
Fields in org.assertj.core.api with type parameters of type AtomicLongArrayAssertModifier and TypeFieldDescriptionstatic final InstanceOfAssertFactory<AtomicLongArray, AtomicLongArrayAssert> InstanceOfAssertFactories.ATOMIC_LONG_ARRAYMethods in org.assertj.core.api that return AtomicLongArrayAssertModifier and TypeMethodDescriptionstatic AtomicLongArrayAssertAssertions.assertThat(AtomicLongArray actual) Create assertion forAtomicLongArray.static AtomicLongArrayAssertJava6Assertions.assertThat(AtomicLongArray actual) Deprecated.Create assertion forAtomicLongArray.default AtomicLongArrayAssertJava6StandardSoftAssertionsProvider.assertThat(AtomicLongArray actual) Create assertion forAtomicLongArray.default AtomicLongArrayAssertWithAssertions.assertThat(AtomicLongArray actual) Create assertion forAtomicLongArray.static AtomicLongArrayAssertAssumptions.assumeThat(AtomicLongArray actual) Create assumption forAtomicLongArray.default AtomicLongArrayAssertWithAssumptions.assumeThat(AtomicLongArray actual) Creates a new instance ofassumption.AtomicLongArrayAssertAtomicLongArrayAssert.contains(long... values) Verifies that the actualAtomicLongArraycontains the given values, in any order.Verifies that the actual atomic array contains the given value at the given index.AtomicLongArrayAssert.containsAnyOf(long... values) Verifies that the actual array contains at least one of the given values.AtomicLongArrayAssert.containsExactly(long... values) Verifies that the actual AtomicLongArray contains only the given values and nothing else, in order.AtomicLongArrayAssert.containsExactlyInAnyOrder(long... values) Verifies that the actual AtomicLongArray contains exactly the given values and nothing else, in any order.AtomicLongArrayAssert.containsOnly(long... values) Verifies that the actual atomic array contains only the given values and nothing else, in any order.AtomicLongArrayAssert.containsOnlyOnce(long... values) Verifies that the actual atomic array contains the given values only once.AtomicLongArrayAssert.containsSequence(long... sequence) Verifies that the actual atomic array contains the given sequence, without any other values between them.AtomicLongArrayAssert.containsSubsequence(long... subsequence) Verifies that the actual atomic array contains the given subsequence (possibly with other values between them).AtomicLongArrayAssert.doesNotContain(long... values) Verifies that the actual atomic array does not contain the given values.AtomicLongArrayAssert.doesNotContain(long value, Index index) Verifies that the actual atomic array does not contain the given value at the given index.AtomicLongArrayAssert.doesNotHaveDuplicates()Verifies that the actual atomic array does not contain duplicates.AtomicLongArrayAssert.endsWith(long... sequence) Verifies that the actual atomic array ends with the given sequence of values, without any other values between them.static AtomicLongArrayAssertBDDAssumptions.given(AtomicLongArray actual) Creates a new assumption's instance for anAtomicLongArrayvalue.AtomicLongArrayAssert.hasArray(long[] expected) Verifies that the AtomicLongArray has the given array.AtomicLongArrayAssert.hasSameSizeAs(Iterable<?> other) Verifies that the AtomicLongArray has the same size as givenIterable.AtomicLongArrayAssert.hasSize(int expected) Verifies that the number of values in the AtomicLongArray is equal to the given one.AtomicLongArrayAssert.hasSizeBetween(int lowerBoundary, int higherBoundary) Verifies that the number of values in the actual array is between the given boundaries (inclusive).AtomicLongArrayAssert.hasSizeGreaterThan(int boundary) Verifies that the number of values in the actual array is greater than the given boundary.AtomicLongArrayAssert.hasSizeGreaterThanOrEqualTo(int boundary) Verifies that the number of values in the actual array is greater than or equal to the given boundary.AtomicLongArrayAssert.hasSizeLessThan(int boundary) Verifies that the number of values in the actual array is less than the given boundary.AtomicLongArrayAssert.hasSizeLessThanOrEqualTo(int boundary) Verifies that the number of values in the actual array is less than or equal to the given boundary.AtomicLongArrayAssert.isNotEmpty()Verifies that the AtomicLongArray is not empty.AtomicLongArrayAssert.isSorted()Verifies that the actual AtomicLongArray is sorted in ascending order according to the natural ordering of its elements.AtomicLongArrayAssert.isSortedAccordingTo(Comparator<? super Long> comparator) Verifies that the actual AtomicLongArray 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.AtomicLongArrayAssert.startsWith(long... sequence) Verifies that the actual atomic array starts with the given sequence of values, without any other values between them.static AtomicLongArrayAssertBDDAssertions.then(AtomicLongArray actual) Create assertion forAtomicLongArray.static AtomicLongArrayAssertJava6BDDAssertions.then(AtomicLongArray actual) Deprecated.Create assertion forAtomicLongArray.default AtomicLongArrayAssertJava6BDDSoftAssertionsProvider.then(AtomicLongArray actual) Create assertion forAtomicLongArray.AtomicLongArrayAssert.usingDefaultElementComparator()Revert to standard comparison for incoming assertion group element checks.AtomicLongArrayAssert.usingElementComparator(Comparator<? super Long> customComparator) Use given custom comparator instead of relying on Longequalsmethod to compare elements for incoming assertion checks.