Uses of Class
org.assertj.core.api.AtomicIntegerAssert
Packages that use AtomicIntegerAssert
-
Uses of AtomicIntegerAssert in org.assertj.core.api
Methods in org.assertj.core.api that return AtomicIntegerAssertModifier and TypeMethodDescriptionstatic AtomicIntegerAssert
Assertions.assertThat
(AtomicInteger actual) Create assertion forAtomicInteger
.Java6AbstractStandardSoftAssertions.assertThat
(AtomicInteger actual) Create assertion forAtomicInteger
.static AtomicIntegerAssert
Java6Assertions.assertThat
(AtomicInteger actual) Create assertion forAtomicInteger
.default AtomicIntegerAssert
WithAssertions.assertThat
(AtomicInteger actual) Create assertion forAtomicInteger
.AtomicIntegerAssert.doesNotHaveValue
(int expectedValue) Verifies that the actual atomic does not have the given value.AtomicIntegerAssert.hasNegativeValue()
Verifies that the actual atomic has a negative value.AtomicIntegerAssert.hasNonNegativeValue()
Verifies that the actual atomic has a non negative value (positive or equal zero).AtomicIntegerAssert.hasNonPositiveValue()
Verifies that the actual atomic has a non positive value (negative or equal zero).AtomicIntegerAssert.hasPositiveValue()
Verifies that the actual atomic has a positive value.AtomicIntegerAssert.hasValue
(int expectedValue) Verifies that the actual atomic has the given value.AtomicIntegerAssert.hasValueBetween
(int startInclusive, int endInclusive) Verifies that the actual atomic has a value in [start, end] range (start included, end included).AtomicIntegerAssert.hasValueCloseTo
(int expected, Offset<Integer> 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.AtomicIntegerAssert.hasValueCloseTo
(int 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.AtomicIntegerAssert.hasValueGreaterThan
(int other) Verifies that the actual atomic has a value strictly greater than the given one.AtomicIntegerAssert.hasValueGreaterThanOrEqualTo
(int other) Verifies that the actual atomic has a value strictly greater than the given one.AtomicIntegerAssert.hasValueLessThan
(int other) Verifies that the actual atomic has a value strictly less than the given one.AtomicIntegerAssert.hasValueLessThanOrEqualTo
(int other) Verifies that the actual atomic has a value strictly less than the given one.static AtomicIntegerAssert
BDDAssertions.then
(AtomicInteger actual) Create assertion forAtomicInteger
.Java6AbstractBDDSoftAssertions.then
(AtomicInteger actual) Create assertion forAtomicInteger
.static AtomicIntegerAssert
Java6BDDAssertions.then
(AtomicInteger actual) Create assertion forAtomicInteger
.AtomicIntegerAssert.usingComparator
(Comparator<? super AtomicInteger> customComparator) AtomicIntegerAssert.usingDefaultComparator()