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_ARRAY
Methods in org.assertj.core.api that return AtomicLongArrayAssertModifier and TypeMethodDescriptionstatic AtomicLongArrayAssert
Assertions.assertThat
(AtomicLongArray actual) Create assertion forAtomicLongArray
.static AtomicLongArrayAssert
Java6Assertions.assertThat
(AtomicLongArray actual) Deprecated.Create assertion forAtomicLongArray
.default AtomicLongArrayAssert
Java6StandardSoftAssertionsProvider.assertThat
(AtomicLongArray actual) Create assertion forAtomicLongArray
.default AtomicLongArrayAssert
WithAssertions.assertThat
(AtomicLongArray actual) Create assertion forAtomicLongArray
.static AtomicLongArrayAssert
Assumptions.assumeThat
(AtomicLongArray actual) Create assumption forAtomicLongArray
.default AtomicLongArrayAssert
WithAssumptions.assumeThat
(AtomicLongArray actual) Creates a new instance of
assumption.AtomicLongArrayAssert
AtomicLongArrayAssert.contains
(long... values) Verifies that the actualAtomicLongArray
contains 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 AtomicLongArrayAssert
BDDAssumptions.given
(AtomicLongArray actual) Creates a new assumption's instance for anAtomicLongArray
value.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 AtomicLongArrayAssert
BDDAssertions.then
(AtomicLongArray actual) Create assertion forAtomicLongArray
.static AtomicLongArrayAssert
Java6BDDAssertions.then
(AtomicLongArray actual) Deprecated.Create assertion forAtomicLongArray
.default AtomicLongArrayAssert
Java6BDDSoftAssertionsProvider.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 Longequals
method to compare elements for incoming assertion checks.