| Package | Description |
|---|---|
| org.assertj.core.api |
| Modifier and Type | Field and Description |
|---|---|
static InstanceOfAssertFactory<AtomicInteger,AtomicIntegerAssert> |
InstanceOfAssertFactories.ATOMIC_INTEGER
InstanceOfAssertFactory for an AtomicInteger. |
| Modifier and Type | Method and Description |
|---|---|
default AtomicIntegerAssert |
WithAssertions.assertThat(AtomicInteger actual)
Create assertion for
AtomicInteger. |
default AtomicIntegerAssert |
Java6StandardSoftAssertionsProvider.assertThat(AtomicInteger actual)
Create assertion for
AtomicInteger. |
static AtomicIntegerAssert |
Java6Assertions.assertThat(AtomicInteger actual)
Deprecated.
Create assertion for
AtomicInteger. |
static AtomicIntegerAssert |
Assertions.assertThat(AtomicInteger actual)
Create assertion for
AtomicInteger. |
default AtomicIntegerAssert |
WithAssumptions.assumeThat(AtomicInteger actual)
Creates a new instance of
assumption. |
static AtomicIntegerAssert |
Assumptions.assumeThat(AtomicInteger actual)
Create assumption for
AtomicInteger. |
AtomicIntegerAssert |
AtomicIntegerAssert.doesNotHaveValue(int expectedValue)
Verifies that the actual atomic does not have the given value.
|
static AtomicIntegerAssert |
BDDAssumptions.given(AtomicInteger actual)
Creates a new assumption's instance for an
AtomicInteger value. |
AtomicIntegerAssert |
AtomicIntegerAssert.hasNegativeValue()
Verifies that the actual atomic has a negative value.
|
AtomicIntegerAssert |
AtomicIntegerAssert.hasNonNegativeValue()
Verifies that the actual atomic has a non negative value (positive or equal zero).
|
AtomicIntegerAssert |
AtomicIntegerAssert.hasNonPositiveValue()
Verifies that the actual atomic has a non positive value (negative or equal zero).
|
AtomicIntegerAssert |
AtomicIntegerAssert.hasPositiveValue()
Verifies that the actual atomic has a positive value.
|
AtomicIntegerAssert |
AtomicIntegerAssert.hasValue(int expectedValue)
Verifies that the actual atomic has the given value.
|
AtomicIntegerAssert |
AtomicIntegerAssert.hasValueBetween(int startInclusive,
int endInclusive)
Verifies that the actual atomic has a value in [start, end] range (start included, end included).
|
AtomicIntegerAssert |
AtomicIntegerAssert.hasValueCloseTo(int expected,
Offset<Integer> offset)
Verifies that the actual atomic has a value close to the given one within the given offset.
|
AtomicIntegerAssert |
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 |
AtomicIntegerAssert.hasValueGreaterThan(int other)
Verifies that the actual atomic has a value strictly greater than the given one.
|
AtomicIntegerAssert |
AtomicIntegerAssert.hasValueGreaterThanOrEqualTo(int other)
Verifies that the actual atomic has a value strictly greater than the given one.
|
AtomicIntegerAssert |
AtomicIntegerAssert.hasValueLessThan(int other)
Verifies that the actual atomic has a value strictly less than the given one.
|
AtomicIntegerAssert |
AtomicIntegerAssert.hasValueLessThanOrEqualTo(int other)
Verifies that the actual atomic has a value strictly less than the given one.
|
default AtomicIntegerAssert |
Java6BDDSoftAssertionsProvider.then(AtomicInteger actual)
Create assertion for
AtomicInteger. |
static AtomicIntegerAssert |
Java6BDDAssertions.then(AtomicInteger actual)
Deprecated.
Create assertion for
AtomicInteger. |
static AtomicIntegerAssert |
BDDAssertions.then(AtomicInteger actual)
Create assertion for
AtomicInteger. |
AtomicIntegerAssert |
AtomicIntegerAssert.usingComparator(Comparator<? super AtomicInteger> customComparator) |
AtomicIntegerAssert |
AtomicIntegerAssert.usingComparator(Comparator<? super AtomicInteger> customComparator,
String customComparatorDescription) |
AtomicIntegerAssert |
AtomicIntegerAssert.usingDefaultComparator() |
Copyright © 2025. All rights reserved.