Uses of Class
org.assertj.core.api.AtomicLongAssert
Packages that use AtomicLongAssert
-
Uses of AtomicLongAssert in org.assertj.core.api
Methods in org.assertj.core.api that return AtomicLongAssertModifier and TypeMethodDescriptionstatic AtomicLongAssert
Assertions.assertThat
(AtomicLong actual) Create assertion forAtomicLong
.Java6AbstractStandardSoftAssertions.assertThat
(AtomicLong actual) Create assertion forAtomicLong
.static AtomicLongAssert
Java6Assertions.assertThat
(AtomicLong actual) Create assertion forAtomicLong
.default AtomicLongAssert
WithAssertions.assertThat
(AtomicLong actual) Create assertion forAtomicLong
.AtomicLongAssert.doesNotHaveValue
(long expectedValue) Verifies that the actual atomic has not the given value.AtomicLongAssert.hasNegativeValue()
Verifies that the actual atomic has a negative value.AtomicLongAssert.hasNonNegativeValue()
Verifies that the actual atomic has a non negative value (positive or equal zero).AtomicLongAssert.hasNonPositiveValue()
Verifies that the actual atomic has a non positive value (negative or equal zero).AtomicLongAssert.hasPositiveValue()
Verifies that the actual atomic has a positive value.AtomicLongAssert.hasValue
(long expectedValue) Verifies that the actual atomic has the given value.AtomicLongAssert.hasValueBetween
(long startInclusive, long endInclusive) Verifies that the actual atomic has a value in [start, end] range (start included, end included).AtomicLongAssert.hasValueCloseTo
(long expected, Offset<Long> offset) Verifies that the actual atomic has a value close to the given one within the given offset.
If difference is equal to the offset value, assertion is considered valid.AtomicLongAssert.hasValueCloseTo
(long expected, Percentage percentage) Verifies that the actual atomic has a value close to the given one within the given percentage.
If difference is equal to the percentage value, assertion is considered valid.AtomicLongAssert.hasValueGreaterThan
(long other) Verifies that the actual atomic has a value strictly greater than the given one.AtomicLongAssert.hasValueGreaterThanOrEqualTo
(long other) Verifies that the actual atomic has a value strictly greater than the given one.AtomicLongAssert.hasValueLessThan
(long other) Verifies that the actual atomic has a value strictly less than the given one.AtomicLongAssert.hasValueLessThanOrEqualTo
(long other) Verifies that the actual atomic has a value strictly less than the given one.static AtomicLongAssert
BDDAssertions.then
(AtomicLong actual) Create assertion forAtomicLong
.Java6AbstractBDDSoftAssertions.then
(AtomicLong actual) Create assertion forAtomicLong
.static AtomicLongAssert
Java6BDDAssertions.then
(AtomicLong actual) Create assertion forAtomicLong
.AtomicLongAssert.usingComparator
(Comparator<? super AtomicLong> customComparator) AtomicLongAssert.usingDefaultComparator()