public abstract class AbstractLongArrayAssert<S extends AbstractLongArrayAssert<S>> extends AbstractArrayAssert<S,long[],Long>
Modifier and Type | Field and Description |
---|---|
protected LongArrays |
arrays |
actual, info, myself
Constructor and Description |
---|
AbstractLongArrayAssert(long[] actual,
Class<?> selfType) |
Modifier and Type | Method and Description |
---|---|
S |
contains(long... values)
Verifies that the actual array contains the given values, in any order.
|
S |
contains(long value,
Index index)
Verifies that the actual array contains the given value at the given index.
|
S |
containsExactly(long... values)
Verifies that the actual group contains only the given values and nothing else, in order.
|
S |
containsOnly(long... values)
Verifies that the actual array contains only the given values and nothing else, in any order.
|
S |
containsOnlyOnce(long... values)
Verifies that the actual array contains the given values only once.
|
S |
containsSequence(long... sequence)
Verifies that the actual array contains the given sequence, without any other values between them.
|
S |
containsSubsequence(long... subsequence)
Verifies that the actual array contains the given subsequence (possibly with other values between them).
|
S |
doesNotContain(long... values)
Verifies that the actual array does not contain the given values.
|
S |
doesNotContain(long value,
Index index)
Verifies that the actual array does not contain the given value at the given index.
|
S |
doesNotHaveDuplicates()
Verifies that the actual array does not contain duplicates.
|
S |
endsWith(long... sequence)
Verifies that the actual array ends with the given sequence of values, without any other values between them.
|
S |
hasSameSizeAs(Iterable<?> other)
Verifies that the actual group has the same size as given
Iterable . |
S |
hasSize(int expected)
Verifies that the number of values in the actual group is equal to the given one.
|
void |
isEmpty()
Verifies that the actual group of values is empty.
|
S |
isNotEmpty()
Verifies that the actual group of values is not empty.
|
void |
isNullOrEmpty()
Verifies that the actual group of values is
null or empty. |
S |
isSorted()
Verifies that the actual array is sorted into ascending order according to the natural ordering of its elements.
|
S |
isSortedAccordingTo(Comparator<? super Long> comparator)
Verifies that the actual array is sorted according to the given comparator. Empty arrays are considered sorted whatever
the comparator is. One element arrays are considered sorted if element is compatible with comparator, otherwise an
AssertionError is thrown.
|
S |
startsWith(long... sequence)
Verifies that the actual array starts with the given sequence of values, without any other values between them.
|
S |
usingDefaultElementComparator()
Revert to standard comparison for incoming assertion group element checks.
|
S |
usingElementComparator(Comparator<? super Long> customComparator)
Use given custom comparator instead of relying on actual type A
equals method to compare group
elements for
incoming assertion checks. |
hasSameSizeAs, inBinary, inHexadecimal
as, as, asList, asString, describedAs, describedAs, descriptionText, doesNotHave, doesNotHaveSameClassAs, equals, failWithMessage, getWritableAssertionInfo, has, hashCode, hasSameClassAs, is, isEqualTo, isExactlyInstanceOf, isIn, isIn, isInstanceOf, isInstanceOfAny, isNot, isNotEqualTo, isNotExactlyInstanceOf, isNotIn, isNotIn, isNotInstanceOf, isNotInstanceOfAny, isNotNull, isNotOfAnyClassIn, isNotSameAs, isNull, isOfAnyClassIn, isSameAs, overridingErrorMessage, usingComparator, usingDefaultComparator, withThreadDumpOnError
protected LongArrays arrays
public AbstractLongArrayAssert(long[] actual, Class<?> selfType)
public void isNullOrEmpty()
null
or empty.public void isEmpty()
public S isNotEmpty()
this
assertion object.public S hasSize(int expected)
expected
- the expected number of values in the actual group.this
assertion object.public S hasSameSizeAs(Iterable<?> other)
Iterable
.
Example:
Iterable<String> abc = newArrayList("a", "b", "c");
Iterable<Ring> elvesRings = newArrayList(vilya, nenya, narya);
// assertions will pass
assertThat(elvesRings).hasSameSizeAs(abc);
other
- the Iterable
to compare size with actual group.this
assertion object.public S contains(long... values)
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 array is null
.AssertionError
- if the actual array does not contain the given values.public S containsOnly(long... values)
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 array is null
.AssertionError
- if the actual array does not contain the given values, i.e. the actual array contains some
or none of the given values, or the actual array contains more values than the given ones.public S containsOnlyOnce(long... values)
Examples :
// assertion will pass
assertThat(new long[] { 1, 2, 3 }).containsOnlyOnce(1, 2);
// assertions will fail
assertThat(new long[] { 1, 2, 1 }).containsOnlyOnce(1);
assertThat(new long[] { 1, 2, 3 }).containsOnlyOnce(4);
assertThat(new long[] { 1, 2, 3, 3 }).containsOnlyOnce(0, 1, 2, 3, 4, 5);
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 array is null
.AssertionError
- if the actual group does not contain the given values, i.e. the actual group contains some
or none of the given values, or the actual group contains more than once these values.public S containsSequence(long... sequence)
Example:
// assertion will pass
assertThat(new long[] { 1, 2, 3 }).containsSequence(1, 2);
// assertion will fail
assertThat(new long[] { 1, 2, 3 }).containsSequence(1, 3);
assertThat(new long[] { 1, 2, 3 }).containsSequence(2, 1);
sequence
- the sequence of values to look for.AssertionError
- if the actual array is null
.AssertionError
- if the given array is null
.AssertionError
- if the actual array does not contain the given sequence.public S containsSubsequence(long... subsequence)
Example:
// assertion will pass
assertThat(new long[] { 1, 2, 3 }).containsSubsequence(1, 2);
assertThat(new long[] { 1, 2, 3 }).containsSubsequence(1, 3);
// assertion will fail
assertThat(new long[] { 1, 2, 3 }).containsSubsequence(2, 1);
subsequence
- the subsequence of values to look for.AssertionError
- if the actual array is null
.AssertionError
- if the given array is null
.AssertionError
- if the actual array does not contain the given subsequence.public S contains(long value, Index index)
value
- the value to look for.index
- the index where the value should be stored in the actual array.AssertionError
- if the actual 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 array.AssertionError
- if the actual array does not contain the given value at the given index.public S doesNotContain(long... values)
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 array is null
.AssertionError
- if the actual array contains any of the given values.public S doesNotContain(long value, Index index)
value
- the value to look for.index
- the index where the value should be stored in the actual array.AssertionError
- if the actual array is null
.NullPointerException
- if the given Index
is null
.AssertionError
- if the actual array contains the given value at the given index.public S doesNotHaveDuplicates()
this
assertion object.AssertionError
- if the actual array is null
.AssertionError
- if the actual array contains duplicates.public S startsWith(long... sequence)
containsSequence(long...)
, but it also verifies that the first element in the
sequence is also first element of the actual array.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 array is null
.AssertionError
- if the actual array does not start with the given sequence.public S endsWith(long... sequence)
containsSequence(long...)
, but it also verifies that the last element in the
sequence is also last element of the actual array.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 array is null
.AssertionError
- if the actual array does not end with the given sequence.public S isSorted()
All array elements must be primitive or implement the Comparable
interface and must be mutually comparable (that is,
e1.compareTo(e2) must not throw a ClassCastException for any elements e1 and e2 in the array), examples :
this
assertion object.public S isSortedAccordingTo(Comparator<? super Long> comparator)
comparator
- the Comparator
used to compare array elementsthis
assertion object.public S usingElementComparator(Comparator<? super Long> customComparator)
equals
method to compare group
elements for
incoming assertion checks.
Custom comparator is bound to assertion instance, meaning that if a new assertion is created, it will use default comparison strategy.
Examples :
// compares invoices by payee
assertThat(invoiceList).usingComparator(invoicePayeeComparator).isEqualTo(expectedInvoiceList).
// compares invoices by date, doesNotHaveDuplicates and contains both use the given invoice date comparator
assertThat(invoiceList).usingComparator(invoiceDateComparator).doesNotHaveDuplicates().contains(may2010Invoice)
// as assertThat(invoiceList) creates a new assertion, it falls back to standard comparison strategy
// based on Invoice's equal method to compare invoiceList elements to lowestInvoice.
assertThat(invoiceList).contains(lowestInvoice).
// standard comparison : the fellowshipOfTheRing includes Gandalf but not Sauron (believe me) ...
assertThat(fellowshipOfTheRing).contains(gandalf)
.doesNotContain(sauron);
// ... but if we compare only races, Sauron is in fellowshipOfTheRing because he's a Maia like Gandalf.
assertThat(fellowshipOfTheRing).usingElementComparator(raceComparator)
.contains(sauron);
customComparator
- the comparator to use for incoming assertion checks.this
assertion object.public S usingDefaultElementComparator()
This method should be used to disable a custom comparison strategy set by calling
EnumerableAssert.usingElementComparator(Comparator)
.
this
assertion object.public S containsExactly(long... values)
Example :
long[] longs = { 1, 2, 3 };
// assertion will pass
assertThat(longs).containsExactly(1, 2, 3);
// assertion will fail as actual and expected orders differ.
assertThat(longs).containsExactly(2, 1, 3);
values
- the given values.this
assertion object.NullPointerException
- if the given argument is null
.AssertionError
- if the actual group is null
.AssertionError
- if the actual group does not contain the given values with same order, i.e. the actual group
contains some or none of the given values, or the actual group contains more values than the given ones
or values are the same but the order is not.Copyright © 2013-2015 AssertJ. All Rights Reserved.