public class Short2DArrayAssert extends Abstract2DArrayAssert<Short2DArrayAssert,short[][],Short>
shorts.
To create an instance of this class, invoke .
Assertions.assertThat(short[][])
| Modifier and Type | Field and Description |
|---|---|
protected Short2DArrays |
short2dArrays |
actual, info, myself, objects, throwUnsupportedExceptionOnEquals| Constructor and Description |
|---|
Short2DArrayAssert(short[][] actual) |
| Modifier and Type | Method and Description |
|---|---|
Short2DArrayAssert |
contains(int[] value,
Index index)
Verifies that the actual
short[][] contains the given short[] at the given index. |
Short2DArrayAssert |
contains(short[] value,
Index index)
Verifies that the actual
short[][] contains the given short[] at the given index. |
Short2DArrayAssert |
doesNotContain(int[] value,
Index index)
Verifies that the actual
short[][] does not contain the given short[] at the given index. |
Short2DArrayAssert |
doesNotContain(short[] value,
Index index)
Verifies that the actual
short[][] does not contain the given short[] at the given index. |
Short2DArrayAssert |
hasDimensions(int expectedFirstDimension,
int expectedSecondDimension)
Verifies that the actual 2D array has the given dimensions.
|
Short2DArrayAssert |
hasNumberOfRows(int expected)
Verifies that the actual two-dimensional array has the given number of rows.
|
Short2DArrayAssert |
hasSameDimensionsAs(Object array)
Verifies that the actual
short[][] has the same dimensions as the given array. |
Short2DArrayAssert |
isDeepEqualTo(short[][] expected)
Verifies that the actual
short[][] is deeply equal to the given one. |
void |
isEmpty()
Verifies that the actual
short[][] is empty, empty means the array has no elements,
said otherwise it can have any number of rows but all rows must be empty. |
Short2DArrayAssert |
isEqualTo(Object expected)
Verifies that the actual
short[][] is equal to the given one. |
Short2DArrayAssert |
isNotEmpty()
Verifies that the actual
short[][] is not empty, not empty means the array has at least one element. |
void |
isNullOrEmpty()
Verifies that the actual
short[][] is null or empty, empty means the array has no elements,
said otherwise it can have any number of rows but all rows must be empty. |
areEqual, asInstanceOf, asList, assertionError, asString, describedAs, descriptionText, doesNotHave, doesNotHaveSameClassAs, doesNotHaveSameHashCodeAs, doesNotHaveToString, equals, extracting, extracting, failure, failureWithActualExpected, failWithActualExpectedAndMessage, failWithMessage, getWritableAssertionInfo, has, hashCode, hasSameClassAs, hasSameHashCodeAs, hasToString, inBinary, inHexadecimal, is, isElementOfCustomAssert, isExactlyInstanceOf, isIn, isIn, isInstanceOf, isInstanceOfAny, isInstanceOfSatisfying, isNot, isNotEqualTo, isNotExactlyInstanceOf, isNotIn, isNotIn, isNotInstanceOf, isNotInstanceOfAny, isNotNull, isNotOfAnyClassIn, isNotSameAs, isNull, isOfAnyClassIn, isSameAs, matches, matches, newListAssertInstance, overridingErrorMessage, overridingErrorMessage, satisfies, satisfies, satisfies, satisfiesAnyOf, satisfiesAnyOf, satisfiesAnyOfForProxy, satisfiesForProxy, setCustomRepresentation, setDescriptionConsumer, setPrintAssertionsDescription, throwAssertionError, usingComparator, usingComparator, usingDefaultComparator, usingRecursiveComparison, usingRecursiveComparison, withFailMessage, withFailMessage, withRepresentation, withThreadDumpOnErrorclone, finalize, getClass, notify, notifyAll, toString, wait, wait, waitas, as, as, describedAsprotected Short2DArrays short2dArrays
public Short2DArrayAssert isDeepEqualTo(short[][] expected)
short[][] is deeply equal to the given one.
Two arrays are considered deeply equal if both are null
or if they refer to arrays that contain the same number of elements and
all corresponding pairs of elements in the two arrays are deeply equal.
Example:
// assertion will pass
assertThat(new short[][] {{1, 2}, {3, 4}}).isDeepEqualTo(new short[][] {{1, 2}, {3, 4}});
// assertions will fail
assertThat(new short[][] {{1, 2}, {3, 4}}).isDeepEqualTo(new short[][] {{1, 2}, {9, 10}});
assertThat(new short[][] {{1, 2}, {3, 4}}).isDeepEqualTo(new short[][] {{1, 2, 3}, {4}});isDeepEqualTo in class Abstract2DArrayAssert<Short2DArrayAssert,short[][],Short>expected - the given value to compare the actual short[][] to.this assertion object.AssertionError - if the actual short[][] is not deeply equal to the given one.public Short2DArrayAssert isEqualTo(Object expected)
short[][] is equal to the given one.
WARNING! This method will use equals to compare (it will compare arrays references only).
Unless you specify a comparator with AbstractAssert.usingComparator(Comparator), it is advised to use
isDeepEqualTo(short[][]) instead.
Example:
short[][] array = {{1, 2}, {3, 4}};
// assertion will pass
assertThat(array).isEqualTo(array);
// assertion will fail as isEqualTo calls equals which compares arrays references only.
assertThat(array).isEqualTo(new short[][] {{1, 2}, {3, 4}});isEqualTo in interface Assert<Short2DArrayAssert,short[][]>isEqualTo in class AbstractAssert<Short2DArrayAssert,short[][]>expected - the given value to compare the actual short[][] to.this assertion object.AssertionError - if the actual short[][] is not equal to the given one.public void isNullOrEmpty()
short[][] is null or empty, empty means the array has no elements,
said otherwise it can have any number of rows but all rows must be empty.
Example:
// assertions will pass
short[][] array = null;
assertThat(array).isNullOrEmpty();
assertThat(new short[][] { }).isNullOrEmpty();
assertThat(new short[][] {{ }}).isNullOrEmpty();
// this is considered empty as there are no elements in the 2d array which is comprised of 3 empty rows.
assertThat(new short[][] {{ }, { }, { }}).isNullOrEmpty();
// assertion will fail
assertThat(new short[][] {{ 1 }, { 2 }}).isNullOrEmpty();AssertionError - if the actual short[][] is not null or not empty.public void isEmpty()
short[][] is empty, empty means the array has no elements,
said otherwise it can have any number of rows but all rows must be empty.
Example:
// assertion will pass
assertThat(new short[][] {{}}).isEmpty();
assertThat(new short[][] {{ }}).isNullOrEmpty();
// this is considered empty as there are no elements in the 2d array which is comprised of 3 empty rows.
assertThat(new short[][] {{ }, { }, { }}).isNullOrEmpty();
// assertions will fail
assertThat(new short[][] {{ 1 }, { 2 }}).isEmpty();
short[][] array = null;
assertThat(array).isEmpty();AssertionError - if the actual short[][] is not empty.public Short2DArrayAssert isNotEmpty()
short[][] is not empty, not empty means the array has at least one element.
Example:
// assertions will pass
assertThat(new short[][] {{ 1 }, { 2 }}).isNotEmpty();
assertThat(new short[][] {{ }, { 2 }}).isNotEmpty();
// assertions will fail
assertThat(new short[][] { }).isNotEmpty();
assertThat(new short[][] {{ }}).isNotEmpty();
// this is considered empty as there are no elements in the 2d array which is comprised of 3 empty rows.
assertThat(new short[][] {{ }, { }, { }}).isNotEmpty();
short[][] array = null;
assertThat(array).isNotEmpty();this assertion object.AssertionError - if the actual short[][] is empty or null.public Short2DArrayAssert hasDimensions(int expectedFirstDimension, int expectedSecondDimension)
Example:
// assertion will pass
assertThat(new short[][] {{1, 2, 3}, {4, 5, 6}}).hasDimensions(2, 3);
// assertions will fail
assertThat(new short[][] { }).hasSize(1, 1);
assertThat(new short[][] {{1, 2, 3}, {4, 5, 6}}).hasDimensions(3, 2);
assertThat(new short[][] {{1, 2, 3}, {4, 5, 6, 7}}).hasDimensions(2, 3); expectedFirstDimension - the expected number of values in first dimension of the actual short[][].expectedSecondDimension - the expected number of values in second dimension of the actual short[][].this assertion object.AssertionError - if the actual short[][]'s dimensions are not equal to the given ones.public Short2DArrayAssert hasNumberOfRows(int expected)
Example:
// assertion will pass
assertThat(new short[][] {{1, 2, 3}, {4, 5, 6}}).hasNumberOfRows(2);
assertThat(new short[][] {{1}, {1, 2}, {1, 2, 3}}).hasNumberOfRows(3);
// assertions will fail
assertThat(new short[][] { }).hasNumberOfRows(1);
assertThat(new short[][] {{1, 2, 3}, {4, 5, 6}}).hasNumberOfRows(3);
assertThat(new short[][] {{1, 2, 3}, {4, 5, 6, 7}}).hasNumberOfRows(1); expected - the expected number of rows of the two-dimensional array.this assertion object.AssertionError - if the actual number of rows are not equal to the given one.public Short2DArrayAssert hasSameDimensionsAs(Object array)
short[][] has the same dimensions as the given array.
Parameter is declared as Object to accept both Object and primitive arrays.
Example: short[][] shortArray = {{1, 2, 3}, {4, 5, 6}};
char[][] charArray = {{'a', 'b', 'c'}, {'d', 'e', 'f'}};
// assertion will pass
assertThat(shortArray).hasSameDimensionsAs(charArray);
// assertions will fail
assertThat(shortArray).hasSameDimensionsAs(new char[][] {{'a', 'b'}, {'c', 'd'}, {'e', 'f'}});
assertThat(shortArray).hasSameDimensionsAs(new char[][] {{'a', 'b'}, {'c', 'd', 'e'}});
assertThat(shortArray).hasSameDimensionsAs(new char[][] {{'a', 'b', 'c'}, {'d', 'e'}});array - the array to compare dimensions with actual short[][].this assertion object.AssertionError - if the actual short[][] is null.AssertionError - if the array parameter is null or is not a true array.AssertionError - if actual short[][] and given array don't have the same dimensions.public Short2DArrayAssert contains(short[] value, Index index)
short[][] contains the given short[] at the given index.
Example:
// assertion will pass
assertThat(new short[][] {{1, 2}, {3, 4}, {5, 6}}).contains(new short[] {3, 4}, atIndex(1));
// assertions will fail
assertThat(new short[][] {{1, 2}, {3, 4}, {5, 6}}).contains(new short[] {3, 4}, atIndex(0));
assertThat(new short[][] {{1, 2}, {3, 4}, {5, 6}}).contains(new short[] {7, 8}, atIndex(2));value - the value to look for.index - the index where the value should be stored in the actual short[][].AssertionError - if the actual short[][] 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 short[][].AssertionError - if the actual short[][] does not contain the given value at the given index.public Short2DArrayAssert contains(int[] value, Index index)
short[][] contains the given short[] at the given index.
Example:
// assertions will pass
assertThat(new short[][] {{1, 2}, {3, 4}, {5, 6}}).doesNotContain(new short[] {3, 4}, atIndex(0));
assertThat(new short[][] {{1, 2}, {3, 4}, {5, 6}}).doesNotContain(new short[] {7, 8}, atIndex(2));
// assertion will fail
assertThat(new short[][] {{1, 2}, {3, 4}, {5, 6}}).doesNotContain(new short[] {3, 4}, atIndex(1));value - the value to look for.index - the index where the value should be stored in the actual short[][].AssertionError - if the actual short[][] 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 short[][].AssertionError - if the actual short[][] does not contain the given value at the given index.public Short2DArrayAssert doesNotContain(short[] value, Index index)
short[][] does not contain the given short[] at the given index.
Example:
// assertions will pass
assertThat(new short[] { 1, 2, 3 }).doesNotContain((short) 1, atIndex(1));
assertThat(new short[] { 1, 2, 3 }).doesNotContain((short) 2, atIndex(0));
// assertions will fail
assertThat(new short[] { 1, 2, 3 }).doesNotContain((short) 1, atIndex(0));
assertThat(new short[] { 1, 2, 3 }).doesNotContain((short) 2, atIndex(1));value - the value to look for.index - the index where the value should be stored in the actual short[][].AssertionError - if the actual short[][] is null.NullPointerException - if the given Index is null.AssertionError - if the actual short[][] contains the given value at the given index.public Short2DArrayAssert doesNotContain(int[] value, Index index)
short[][] does not contain the given short[] at the given index.
Example:
// assertions will pass
assertThat(new short[] { 1, 2, 3 }).doesNotContain(1, atIndex(1));
assertThat(new short[] { 1, 2, 3 }).doesNotContain(2, atIndex(0));
// assertions will fail
assertThat(new short[] { 1, 2, 3 }).doesNotContain(1, atIndex(0));
assertThat(new short[] { 1, 2, 3 }).doesNotContain(2, atIndex(1));value - the value to look for.index - the index where the value should be stored in the actual short[][].AssertionError - if the actual short[][] is null.NullPointerException - if the given Index is null.AssertionError - if the actual short[][] contains the given value at the given index.Copyright © 2025. All rights reserved.