public class AtomicIntegerArrayAssert extends AbstractEnumerableAssert<AtomicIntegerArrayAssert,AtomicIntegerArray,Integer>
Modifier and Type | Field and Description |
---|---|
protected IntArrays |
arrays |
actual, info, myself, throwUnsupportedExceptionOnEquals
Constructor and Description |
---|
AtomicIntegerArrayAssert(AtomicIntegerArray actual) |
Modifier and Type | Method and Description |
---|---|
AtomicIntegerArrayAssert |
contains(int... values)
Verifies that the actual
AtomicIntegerArray contains the given values, in any order. |
AtomicIntegerArrayAssert |
contains(int value,
Index index)
Verifies that the actual atomic array contains the given value at the given index.
|
AtomicIntegerArrayAssert |
containsAnyOf(int... values)
Verifies that the actual array contains at least one of the given values.
|
AtomicIntegerArrayAssert |
containsExactly(int... values)
Verifies that the actual AtomicIntegerArray contains only the given values and nothing else, in order.
|
AtomicIntegerArrayAssert |
containsExactlyInAnyOrder(int... values)
Verifies that the actual AtomicIntegerArray contains exactly the given values and nothing else, in any order.
|
AtomicIntegerArrayAssert |
containsOnly(int... values)
Verifies that the actual atomic array contains only the given values and nothing else, in any order.
|
AtomicIntegerArrayAssert |
containsOnlyOnce(int... values)
Verifies that the actual atomic array contains the given values only once.
|
AtomicIntegerArrayAssert |
containsSequence(int... sequence)
Verifies that the actual atomic array contains the given sequence, without any other values between them.
|
AtomicIntegerArrayAssert |
containsSubsequence(int... subsequence)
Verifies that the actual atomic array contains the given subsequence (possibly with other values between them).
|
AtomicIntegerArrayAssert |
doesNotContain(int... values)
Verifies that the actual atomic array does not contain the given values.
|
AtomicIntegerArrayAssert |
doesNotContain(int value,
Index index)
Verifies that the actual atomic array does not contain the given value at the given index.
|
AtomicIntegerArrayAssert |
doesNotHaveDuplicates()
Verifies that the actual atomic array does not contain duplicates.
|
AtomicIntegerArrayAssert |
endsWith(int... sequence)
Verifies that the actual atomic array ends with the given sequence of values, without any other values between them.
|
AtomicIntegerArrayAssert |
hasArray(int[] expected)
Verifies that the AtomicIntegerArray has the given array.
|
AtomicIntegerArrayAssert |
hasSameSizeAs(Iterable<?> other)
Verifies that the AtomicIntegerArray has the same size as given
Iterable . |
AtomicIntegerArrayAssert |
hasSize(int expected)
Verifies that the number of values in the AtomicIntegerArray is equal to the given one.
|
AtomicIntegerArrayAssert |
hasSizeBetween(int lowerBoundary,
int higherBoundary)
Verifies that the number of values in the actual array is between the given boundaries (inclusive).
|
AtomicIntegerArrayAssert |
hasSizeGreaterThan(int boundary)
Verifies that the number of values in the actual array is greater than the given boundary.
|
AtomicIntegerArrayAssert |
hasSizeGreaterThanOrEqualTo(int boundary)
Verifies that the number of values in the actual array is greater than or equal to the given boundary.
|
AtomicIntegerArrayAssert |
hasSizeLessThan(int boundary)
Verifies that the number of values in the actual array is less than the given boundary.
|
AtomicIntegerArrayAssert |
hasSizeLessThanOrEqualTo(int boundary)
Verifies that the number of values in the actual array is less than or equal to the given boundary.
|
void |
isEmpty()
Verifies that the AtomicIntegerArray is empty.
|
AtomicIntegerArrayAssert |
isNotEmpty()
Verifies that the AtomicIntegerArray is not empty.
|
void |
isNullOrEmpty()
Verifies that the AtomicIntegerArray is
null or empty. |
AtomicIntegerArrayAssert |
isSorted()
Verifies that the actual AtomicIntegerArray is sorted in ascending order according to the natural ordering of its elements.
|
AtomicIntegerArrayAssert |
isSortedAccordingTo(Comparator<? super Integer> comparator)
Verifies that the actual AtomicIntegerArray 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. |
AtomicIntegerArrayAssert |
startsWith(int... sequence)
Verifies that the actual atomic array starts with the given sequence of values, without any other values between them.
|
AtomicIntegerArrayAssert |
usingDefaultElementComparator()
Revert to standard comparison for incoming assertion group element checks.
|
AtomicIntegerArrayAssert |
usingElementComparator(Comparator<? super Integer> customComparator)
Use given custom comparator instead of relying on Integer
equals method to compare elements for incoming assertion checks. |
hasSameSizeAs, inBinary, inHexadecimal
as, as, asList, asString, describedAs, describedAs, descriptionText, doesNotHave, doesNotHaveSameClassAs, equals, failWithMessage, getWritableAssertionInfo, has, hashCode, hasSameClassAs, hasSameHashCodeAs, hasToString, is, isEqualTo, isExactlyInstanceOf, isIn, isIn, isInstanceOf, isInstanceOfAny, isInstanceOfSatisfying, isNot, isNotEqualTo, isNotExactlyInstanceOf, isNotIn, isNotIn, isNotInstanceOf, isNotInstanceOfAny, isNotNull, isNotOfAnyClassIn, isNotSameAs, isNull, isOfAnyClassIn, isSameAs, matches, matches, newListAssertInstance, overridingErrorMessage, satisfies, satisfies, satisfiesAnyOf, satisfiesAnyOf, setCustomRepresentation, throwAssertionError, usingComparator, usingComparator, usingDefaultComparator, withFailMessage, withRepresentation, withThreadDumpOnError
protected IntArrays arrays
public AtomicIntegerArrayAssert(AtomicIntegerArray actual)
public void isNullOrEmpty()
null
or empty.
Example:
// assertions will pass
assertThat(new AtomicIntegerArray(new int[0])).isNullOrEmpty();
AtomicIntegerArray array = null;
assertThat(array).isNullOrEmpty();
// assertion will fail
assertThat(new AtomicIntegerArray(new int[] { 1, 2, 3 })).isNullOrEmpty();
AssertionError
- if the AtomicIntegerArray is not null
or not empty.public void isEmpty()
Example:
// assertion will pass
assertThat(new AtomicIntegerArray(new int[0])).isEmpty();
// assertion will fail
assertThat(new AtomicIntegerArray(new int[] { 1, 2, 3 })).isEmpty();
AssertionError
- if the AtomicIntegerArray is not empty.public AtomicIntegerArrayAssert isNotEmpty()
Example:
// assertion will pass
assertThat(new AtomicIntegerArray(new int[] { 1, 2, 3 })).isNotEmpty();
// assertion will fail
assertThat(new AtomicIntegerArray(new int[0])).isNotEmpty();
this
assertion object.AssertionError
- if the AtomicIntegerArray is empty.public AtomicIntegerArrayAssert hasArray(int[] expected)
Example:
AtomicIntegerArray atomicIntegerArray = new AtomicIntegerArray(new int[] { 1, 2, 3 });
// assertion will pass
assertThat(atomicIntegerArray).hasArray(new int[] { 1, 2, 3 });
// assertion will fail
assertThat(atomicIntegerArray).hasArray(new int[] { 2, 3, 4 });
expected
- the int[] array expected to be in the actual AtomicIntegerArray.this
assertion object.AssertionError
- if the AtomicIntegerArray does not have the given array.public AtomicIntegerArrayAssert hasSize(int expected)
Example:
AtomicIntegerArray atomicIntegerArray = new AtomicIntegerArray(new int[] { 1, 2, 3 });
assertThat(atomicIntegerArray).hasSize(3);
// assertion will fail
assertThat(atomicIntegerArray).hasSize(1);
expected
- the expected number of values in the actual AtomicIntegerArray.this
assertion object.AssertionError
- if the number of values of the AtomicIntegerArray is not equal to the given one.public AtomicIntegerArrayAssert hasSizeGreaterThan(int boundary)
Example:
AtomicIntegerArray atomicIntegerArray = new AtomicIntegerArray(new int[] { 1, 2, 3 });
// assertion will pass
assertThat(atomicIntegerArray).hasSizeGreaterThan(1);
// assertion will fail
assertThat(atomicIntegerArray).hasSizeGreaterThan(3);
boundary
- the given value to compare the actual size to.this
assertion object.AssertionError
- if the number of values of the actual array is not greater than the boundary.public AtomicIntegerArrayAssert hasSizeGreaterThanOrEqualTo(int boundary)
Example:
AtomicIntegerArray atomicIntegerArray = new AtomicIntegerArray(new int[] { 1, 2, 3 });
// assertion will pass
assertThat(atomicIntegerArray).hasSizeGreaterThanOrEqualTo(3);
// assertion will fail
assertThat(atomicIntegerArray).hasSizeGreaterThanOrEqualTo(5);
boundary
- the given value to compare the actual size to.this
assertion object.AssertionError
- if the number of values of the actual array is not greater than or equal to the boundary.public AtomicIntegerArrayAssert hasSizeLessThan(int boundary)
Example:
AtomicIntegerArray atomicIntegerArray = new AtomicIntegerArray(new int[] { 1, 2, 3 });
// assertion will pass
assertThat(atomicIntegerArray).hasSizeLessThan(4);
// assertion will fail
assertThat(atomicIntegerArray).hasSizeLessThan(2);
boundary
- the given value to compare the actual size to.this
assertion object.AssertionError
- if the number of values of the actual array is not less than the boundary.public AtomicIntegerArrayAssert hasSizeLessThanOrEqualTo(int boundary)
Example:
AtomicIntegerArray atomicIntegerArray = new AtomicIntegerArray(new int[] { 1, 2, 3 });
// assertion will pass
assertThat(atomicIntegerArray).hasSizeLessThanOrEqualTo(3);
// assertion will fail
assertThat(atomicIntegerArray).hasSizeLessThanOrEqualTo(2);
boundary
- the given value to compare the actual size to.this
assertion object.AssertionError
- if the number of values of the actual array is not less than or equal to the boundary.public AtomicIntegerArrayAssert hasSizeBetween(int lowerBoundary, int higherBoundary)
Example:
AtomicIntegerArray atomicIntegerArray = new AtomicIntegerArray(new int[] { 1, 2, 3 });
// assertion will pass
assertThat(atomicIntegerArray).hasSizeBetween(3, 4);
// assertion will fail
assertThat(atomicIntegerArray).hasSizeBetween(4, 6);
lowerBoundary
- the lower boundary compared to which actual size should be greater than or equal to.higherBoundary
- the higher boundary compared to which actual size should be less than or equal to.this
assertion object.AssertionError
- if the number of values of the actual array is not between the boundaries.public AtomicIntegerArrayAssert hasSameSizeAs(Iterable<?> other)
Iterable
.
Example:
Iterable<String> abc = newArrayList("a", "b", "c");
AtomicIntegerArray atomicIntegerArray = new AtomicIntegerArray(new int[] { 1, 2, 3 });
// assertion will pass
assertThat(atomicIntegerArray).hasSameSizeAs(abc);
// assertions will fail
assertThat(atomicIntegerArray).hasSameSizeAs(Arrays.asList(1, 2));
assertThat(atomicIntegerArray).hasSameSizeAs(Arrays.asList(1, 2, 3, 4));
other
- the Iterable
to compare size with actual AtomicIntegerArray.this
assertion object.AssertionError
- if the actual AtomicIntegerArray is null
.AssertionError
- if the other Iterable
is null
.AssertionError
- if actual AtomicIntegerArray and given Iterable
don't have the same size.public AtomicIntegerArrayAssert contains(int... values)
AtomicIntegerArray
contains the given values, in any order.
Example:
AtomicIntegerArray atomicIntegerArray = new AtomicIntegerArray(new int[] { 1, 2, 3 });
// assertions will pass
assertThat(atomicIntegerArray).contains(1, 2)
.contains(3, 1)
.contains(1, 3, 2);
// assertions will fail
assertThat(atomicIntegerArray).contains(2, 3, 4);
assertThat(atomicIntegerArray).contains(4, 5, 6);
values
- the given values.this
assertion object.NullPointerException
- if the given argument is null
.IllegalArgumentException
- if the given argument is an empty array.AssertionError
- if the actual atomic array is null
.AssertionError
- if the actual atomic array does not contain the given values.public AtomicIntegerArrayAssert containsOnly(int... values)
Example:
AtomicIntegerArray atomicIntegerArray = new AtomicIntegerArray(new int[] { 1, 2, 3 });
// assertions will pass
assertThat(atomicIntegerArray).containsOnly(1, 2, 3)
.containsOnly(2, 3, 1);
assertThat(new AtomicIntegerArray(new int[] { 1, 1, 2 })).containsOnly(1, 2);
// assertions will fail
assertThat(atomicIntegerArray).containsOnly(1, 2, 3, 4);
assertThat(atomicIntegerArray).containsOnly(4, 7);
values
- the given values.this
assertion object.NullPointerException
- if the given argument is null
.IllegalArgumentException
- if the given argument is an empty array.AssertionError
- if the actual atomic array is null
.AssertionError
- if the actual atomic array does not contain the given values, i.e. it contains a subset of
of the given values, or more values than the given ones.public AtomicIntegerArrayAssert containsOnlyOnce(int... values)
Examples :
AtomicIntegerArray atomicIntegerArray = new AtomicIntegerArray(new int[] { 1, 2, 3 });
// assertion will pass
assertThat(atomicIntegerArray).containsOnlyOnce(1, 2);
// assertions will fail
assertThat(atomicIntegerArray).containsOnlyOnce(4);
assertThat(new AtomicIntegerArray(new int[] { 1, 2, 1 })).containsOnlyOnce(1);
assertThat(new AtomicIntegerArray(new int[] { 1, 2, 3, 3 })).containsOnlyOnce(1, 2, 3);
values
- the given values.this
assertion object.NullPointerException
- if the given argument is null
.IllegalArgumentException
- if the given argument is an empty array.AssertionError
- if the actual atomic array is null
.AssertionError
- if the actual AtomicIntegerArray does not contain the given values or contains them more than once.public AtomicIntegerArrayAssert containsSequence(int... sequence)
Example:
AtomicIntegerArray atomicIntegerArray = new AtomicIntegerArray(new int[] { 1, 2, 3 });
// assertion will pass
assertThat(atomicIntegerArray).containsSequence(1, 2);
// assertion will fail
assertThat(atomicIntegerArray).containsSequence(1, 3);
assertThat(atomicIntegerArray).containsSequence(2, 1);
sequence
- the sequence of values to look for.AssertionError
- if the actual atomic array is null
.AssertionError
- if the given array is null
.AssertionError
- if the actual atomic array does not contain the given sequence.public AtomicIntegerArrayAssert containsSubsequence(int... subsequence)
Example:
AtomicIntegerArray atomicIntegerArray = new AtomicIntegerArray(new int[] { 1, 2, 3 });
// assertions will pass
assertThat(atomicIntegerArray).containsSubsequence(1, 2)
.containsSubsequence(1, 3);
// assertion will fail
assertThat(atomicIntegerArray).containsSubsequence(2, 1);
subsequence
- the subsequence of values to look for.AssertionError
- if the actual atomic array is null
.AssertionError
- if the given array is null
.AssertionError
- if the actual atomic array does not contain the given subsequence.public AtomicIntegerArrayAssert contains(int value, Index index)
Example:
AtomicIntegerArray atomicIntegerArray = new AtomicIntegerArray(new int[] { 1, 2, 3 });
// assertions will pass
assertThat(atomicIntegerArray).contains(1, atIndex(O))
.contains(3, atIndex(2));
// assertions will fail
assertThat(atomicIntegerArray).contains(1, atIndex(1));
assertThat(atomicIntegerArray).contains(4, atIndex(2));
value
- the value to look for.index
- the index where the value should be stored in the actual atomic array.AssertionError
- if the actual atomic array is null
or empty.NullPointerException
- if the given Index
is null
.IndexOutOfBoundsException
- if the value of the given Index
is equal to or greater than the size of
the actual atomic array.AssertionError
- if the actual atomic array does not contain the given value at the given index.public AtomicIntegerArrayAssert doesNotContain(int... values)
Example:
AtomicIntegerArray atomicIntegerArray = new AtomicIntegerArray(new int[] { 1, 2, 3 });
// assertion will pass
assertThat(atomicIntegerArray).doesNotContain(4);
// assertion will fail
assertThat(atomicIntegerArray).doesNotContain(2);
values
- the given values.this
assertion object.NullPointerException
- if the given argument is null
.IllegalArgumentException
- if the given argument is an empty array.AssertionError
- if the actual atomic array is null
.AssertionError
- if the actual atomic array contains any of the given values.public AtomicIntegerArrayAssert doesNotContain(int value, Index index)
Example:
AtomicIntegerArray atomicIntegerArray = new AtomicIntegerArray(new int[] { 1, 2, 3 });
// assertions will pass
assertThat(atomicIntegerArray).doesNotContain(1, atIndex(1))
.doesNotContain(2, atIndex(0));
// assertions will fail
assertThat(atomicIntegerArray).doesNotContain(1, atIndex(0));
assertThat(atomicIntegerArray).doesNotContain(2, atIndex(1));
value
- the value to look for.index
- the index where the value should be stored in the actual atomic array.AssertionError
- if the actual atomic array is null
.NullPointerException
- if the given Index
is null
.AssertionError
- if the actual atomic array contains the given value at the given index.public AtomicIntegerArrayAssert doesNotHaveDuplicates()
Example:
AtomicIntegerArray atomicIntegerArray = new AtomicIntegerArray(new int[] { 1, 2, 3 });
// assertion will pass
assertThat(atomicIntegerArray).doesNotHaveDuplicates();
// assertion will fail
assertThat(new AtomicIntegerArray(new int[] { 1, 1, 2, 3 })).doesNotHaveDuplicates();
this
assertion object.AssertionError
- if the actual atomic array is null
.AssertionError
- if the actual atomic array contains duplicates.public AtomicIntegerArrayAssert startsWith(int... sequence)
containsSequence(int...)
, but it also verifies that the first element in the
sequence is also first element of the actual atomic array.
Example:
AtomicIntegerArray atomicIntegerArray = new AtomicIntegerArray(new int[] { 1, 2, 3 });
// assertion will pass
assertThat(atomicIntegerArray).startsWith(1, 2);
// assertion will fail
assertThat(atomicIntegerArray).startsWith(2, 3);
sequence
- the sequence of values to look for.NullPointerException
- if the given argument is null
.IllegalArgumentException
- if the given argument is an empty array.AssertionError
- if the actual atomic array is null
.AssertionError
- if the actual atomic array does not start with the given sequence.public AtomicIntegerArrayAssert endsWith(int... sequence)
containsSequence(int...)
, but it also verifies that the last element in the
sequence is also last element of the actual atomic array.
Example:
AtomicIntegerArray atomicIntegerArray = new AtomicIntegerArray(new int[] { 1, 2, 3 });
// assertion will pass
assertThat(atomicIntegerArray).endsWith(2, 3);
// assertion will fail
assertThat(atomicIntegerArray).endsWith(3, 4);
sequence
- the sequence of values to look for.NullPointerException
- if the given argument is null
.IllegalArgumentException
- if the given argument is an empty array.AssertionError
- if the actual atomic array is null
.AssertionError
- if the actual atomic array does not end with the given sequence.public AtomicIntegerArrayAssert isSorted()
Empty or one element arrays are considered sorted (unless the array element type is not Comparable).
this
assertion object.AssertionError
- if the actual AtomicIntegerArray is not sorted in ascending order according to the natural ordering of its
elements.AssertionError
- if the actual AtomicIntegerArray is null
.public AtomicIntegerArrayAssert isSortedAccordingTo(Comparator<? super Integer> comparator)
comparator
- the Comparator
used to compare array elementsthis
assertion object.AssertionError
- if the actual AtomicIntegerArray is not sorted according to the given comparator.AssertionError
- if the actual AtomicIntegerArray is null
.NullPointerException
- if the given comparator is null
.public AtomicIntegerArrayAssert usingElementComparator(Comparator<? super Integer> customComparator)
equals
method to compare elements for incoming assertion checks.
Custom comparator is bound to the current assertion instance, meaning that if a new assertion is created, it will use default comparison strategy.
Examples :
AtomicIntegerArray atomicIntegerArray = new AtomicIntegerArray(new int[] { 1, 2, 3 });
// absolute value comparator
Comparator<Integer> absComparator = ...;
assertThat(invoiceList).usingComparator(absComparator).contains(-1, -2, 3);
customComparator
- the comparator to use for incoming assertion checks.this
assertion object.NullPointerException
- if the given comparator is null
.public AtomicIntegerArrayAssert usingDefaultElementComparator()
This method should be used to disable a custom comparison strategy set by calling
EnumerableAssert.usingElementComparator(Comparator)
.
this
assertion object.public AtomicIntegerArrayAssert containsExactly(int... values)
Example :
AtomicIntegerArray atomicIntegerArray = new AtomicIntegerArray(new int[] { 1, 2, 3 });
// assertion will pass
assertThat(atomicIntegerArray).containsExactly(1, 2, 3);
// assertion will fail as actual and expected order differ
assertThat(atomicIntegerArray).containsExactly(2, 1, 3);
values
- the given values.this
assertion object.NullPointerException
- if the given argument is null
.AssertionError
- if the actual AtomicIntegerArray is null
.AssertionError
- if the actual AtomicIntegerArray does not contain the given values with same order, i.e. it
contains some or none of the given values, or more values than the given ones or values are the same but the order is not.public AtomicIntegerArrayAssert containsExactlyInAnyOrder(int... values)
Example :
// assertions will pass
assertThat(new AtomicIntegerArray(new int[] { 1, 2 })).containsExactlyInAnyOrder(1, 2);
assertThat(new AtomicIntegerArray(new int[] { 1, 2, 1 })).containsExactlyInAnyOrder(1, 1, 2);
// assertions will fail
assertThat(new AtomicIntegerArray(new int[] { 1, 2 })).containsExactlyInAnyOrder(1);
assertThat(new AtomicIntegerArray(new int[] { 1 })).containsExactlyInAnyOrder(1, 2);
assertThat(new AtomicIntegerArray(new int[] { 1, 2, 1 })).containsExactlyInAnyOrder(1, 2);
values
- the given values.this
assertion object.NullPointerException
- if the given argument is null
.AssertionError
- if the actual AtomicIntegerArray is null
.AssertionError
- if the actual AtomicIntegerArray does not contain the given values, i.e. it
contains some or none of the given values, or more values than the given ones.public AtomicIntegerArrayAssert containsAnyOf(int... values)
Example :
AtomicIntegerArray oneTwoThree = new AtomicIntegerArray(new int[] { 1, 2, 3 });
// assertions will pass
assertThat(oneTwoThree).containsAnyOf(2)
.containsAnyOf(2, 3)
.containsAnyOf(1, 2, 3)
.containsAnyOf(1, 2, 3, 4)
.containsAnyOf(5, 6, 7, 2);
// assertions will fail
assertThat(oneTwoThree).containsAnyOf(4);
assertThat(oneTwoThree).containsAnyOf(4, 5, 6, 7);
values
- the values whose at least one which is expected to be in the array under test.this
assertion object.NullPointerException
- if the array of values is null
.IllegalArgumentException
- if the array of values is empty and the array under test is not empty.AssertionError
- if the array under test is null
.AssertionError
- if the array under test does not contain any of the given values
.Copyright © 2014–2019 AssertJ. All rights reserved.