public class Char2DArrayAssert extends Abstract2DArrayAssert<Char2DArrayAssert,char[][],Character>
chars.
To create an instance of this class, invoke .
Assertions.assertThat(char[][])
| Modifier and Type | Field and Description |
|---|---|
protected Char2DArrays |
char2dArrays |
actual, info, myself, objects, throwUnsupportedExceptionOnEquals| Constructor and Description |
|---|
Char2DArrayAssert(char[][] actual) |
| Modifier and Type | Method and Description |
|---|---|
Char2DArrayAssert |
contains(char[] value,
Index index)
Verifies that the actual
char[][] contains the given char[] at the given index. |
Char2DArrayAssert |
doesNotContain(char[] value,
Index index)
Verifies that the actual
char[][] does not contain the given char[] at the given index. |
Char2DArrayAssert |
hasDimensions(int expectedFirstDimension,
int expectedSecondDimension)
Verifies that the actual
char[][] has the the given dimensions. |
Char2DArrayAssert |
hasNumberOfRows(int expected)
Verifies that the actual two-dimensional array has the given number of rows.
|
Char2DArrayAssert |
hasSameDimensionsAs(Object array)
Verifies that the actual
char[][] has the same dimensions as the given array. |
Char2DArrayAssert |
inUnicode()
Use unicode character representation instead of standard representation in error messages.
|
Char2DArrayAssert |
isDeepEqualTo(char[][] expected)
Verifies that the actual
char[][] is deeply equal to the given one. |
void |
isEmpty()
Verifies that the actual
char[][] is empty, empty means the array has no elements,
said otherwise it can have any number of rows but all rows must be empty. |
Char2DArrayAssert |
isEqualTo(Object expected)
Verifies that the actual
char[][] is equal to the given one. |
Char2DArrayAssert |
isNotEmpty()
Verifies that the actual
char[][] is not empty, not empty means the array has at least one char element. |
void |
isNullOrEmpty()
Verifies that the actual
char[][] 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 Char2DArrays char2dArrays
public Char2DArrayAssert isDeepEqualTo(char[][] expected)
char[][] is deeply equal to the given one.
Two array references 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 char[][] {{'1', '2'}, {'3', '4'}}).isDeepEqualTo(new char[][] {{'1', '2'}, {'3', '4'}});
// assertions will fail
assertThat(new char[][] {{'1', '2'}, {'3', '4'}}).isDeepEqualTo(new char[][] {{'1', '2'}, {'9', '0'}});
assertThat(new char[][] {{'1', '2'}, {'3', '4'}}).isDeepEqualTo(new char[][] {{'1', '2', '3'}, {'4'}});isDeepEqualTo in class Abstract2DArrayAssert<Char2DArrayAssert,char[][],Character>expected - the given value to compare the actual value to.this assertion object.AssertionError - if the actual value is not deeply equal to the given one.public Char2DArrayAssert isEqualTo(Object expected)
char[][] 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(char[][]) instead.
Example:
char[][] 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 char[][] {{'1', '2'}, {'3', '4'}});isEqualTo in interface Assert<Char2DArrayAssert,char[][]>isEqualTo in class AbstractAssert<Char2DArrayAssert,char[][]>expected - the given value to compare the actual char[][] to.this assertion object.AssertionError - if the actual char[][] is not equal to the given one.public void isNullOrEmpty()
char[][] 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
char[][] array = null;
assertThat(array).isNullOrEmpty();
assertThat(new char[][] { }).isNullOrEmpty();
assertThat(new char[][] { { } }).isNullOrEmpty();
// this is considered empty as there are no elements in the 2d array which is comprised of 3 empty rows.
assertThat(new char[][] { { }, { }, { } }).isNullOrEmpty();
// assertion will fail
assertThat(new char[][] { {'a'}, {'b'} }).isNullOrEmpty();AssertionError - if the actual char[][] is not null or not empty.public void isEmpty()
char[][] 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:
// assertions will pass
assertThat(new char[][] { {} }).isEmpty();
// this is considered empty as there are no elements in the 2d array which is comprised of 3 empty rows.
assertThat(new char[][] { { }, { }, { } }).isEmpty();
// assertions will fail
assertThat(new char[][] { {'a'}, {'b'} }).isEmpty();
char[][] array = null;
assertThat(array).isEmpty();AssertionError - if the actual char[][] is not empty.public Char2DArrayAssert isNotEmpty()
char[][] is not empty, not empty means the array has at least one char element.
Example:
// assertion will pass
assertThat(new char[][] { {'a'}, {'b'} }).isNotEmpty();
assertThat(new char[][] { { }, {'b'} }).isNotEmpty();
// assertions will fail
assertThat(new char[][] { }).isNotEmpty();
assertThat(new char[][] { { } }).isNotEmpty();
// this is considered empty as there are no elements in the 2d array which is comprised of 3 empty rows.
assertThat(new char[][] { { }, { }, { } }).isNotEmpty();
char[][] array = null;
assertThat(array).isNotEmpty();this assertion object.AssertionError - if the actual char[][] is empty or null.public Char2DArrayAssert hasDimensions(int expectedFirstDimension, int expectedSecondDimension)
char[][] has the the given dimensions.
Example:
// assertion will pass
assertThat(new char[][] { {'1', '2', '3'}, {'4', '5', '6'} }).hasDimensions(2, 3);
// assertions will fail
assertThat(new char[][] { }).hasDimensions(1, 1);
assertThat(new char[][] { {'1', '2', '3'}, {'4', '5', '6'} }).hasDimensions(3, 2);
assertThat(new char[][] { {'1', '2', '3'}, {'4', '5', '6', '7'} }).hasDimensions(2, 3); expectedFirstDimension - the expected number of values in first dimension of the actual char[][].expectedSecondDimension - the expected number of values in second dimension of the actual char[][].this assertion object.AssertionError - if the number of values of the actual char[][] is not equal to the given one.public Char2DArrayAssert hasNumberOfRows(int expected)
Example:
// assertion will pass
assertThat(new char[][] {{'1', '2', '3'}, {'4', '5', '6'}}).hasNumberOfRows(2);
assertThat(new char[][] {{'1'}, {'1', '2'}, {'1', '2', '3'}}).hasNumberOfRows(3);
// assertions will fail
assertThat(new char[][] { }).hasNumberOfRows(1);
assertThat(new char[][] {{'1', '2', '3'}, {'4', '5', '6'}}).hasNumberOfRows(3);
assertThat(new char[][] {{'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 Char2DArrayAssert hasSameDimensionsAs(Object array)
char[][] has the same dimensions as the given array.
Parameter is declared as Object to accept both Object[] and primitive arrays (e.g. int[]).
Example: char[][] charArray = {{'a', 'b', 'c'}, {'d', 'e', 'f'}};
int[][] intArray = {{1, 2, 3}, {4, 5, 6}};
// assertion will pass
assertThat(charArray).hasSameDimensionsAs(intArray);
// assertions will fail
assertThat(charArray).hasSameDimensionsAs(new int[][] {{1, 2}, {3, 4}, {5, 6}});
assertThat(charArray).hasSameDimensionsAs(new int[][] {{1, 2}, {3, 4, 5}});
assertThat(charArray).hasSameDimensionsAs(new int[][] {{1, 2, 3}, {4, 5}});array - the array to compare dimensions with actual char[][].this assertion object.AssertionError - if the actual char[][] is null.AssertionError - if the array parameter is null or is not a true array.AssertionError - if actual char[][] and given array don't have the same dimensions.public Char2DArrayAssert contains(char[] value, Index index)
char[][] contains the given char[] at the given index.
Example:
// assertion will pass
assertThat(new char[][] {{'a', 'b'}, {'c', 'd'} }).contains(new char[] {'a', 'b'}, atIndex(0));
// assertion will fail
assertThat(new char[][] {{'a', 'b'}, {'c', 'd'} }).contains(new char[] {'a', 'b'}, atIndex(1));value - the value to look for.index - the index where the value should be stored in the actual char[][].AssertionError - if the actual char[][] 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 char[][].AssertionError - if the actual char[][] does not contain the given value at the given index.public Char2DArrayAssert doesNotContain(char[] value, Index index)
char[][] does not contain the given char[] at the given index.
Example:
// assertion will pass
assertThat(new char[][] {{'a', 'b'}, {'c', 'd'} }).doesNotContain(new char[] {'a', 'b'}, atIndex(1));
// assertion will fail
assertThat(new char[][] {{'a', 'b'}, {'c', 'd'} }).doesNotContain(new char[] {'a', 'b'}, atIndex(0));value - the value to look for.index - the index where the value should be stored in the actual char[][].AssertionError - if the actual char[][] is null.NullPointerException - if the given Index is null.AssertionError - if the actual char[][] contains the given value at the given index.public Char2DArrayAssert inUnicode()
With standard error message:
assertThat(new char[][] {{'a', 'b'}, {'ć', 'd'}}).isDeepEqualTo(new char[][] {{'a', 'b'}, {'c', 'd'}});
org.opentest4j.AssertionFailedError:
Expecting "actual[1][0]" value to be equal to:
<'c'>
but was
<'ć'>
With unicode based error message:
assertThat(new char[][] {{'a', 'b'}, {'ć', 'd'}}).inUnicode().isDeepEqualTo(new char[][] {{'a', 'b'}, {'c', 'd'}});
org.opentest4j.AssertionFailedError:
Expecting actual[1][0] value to be equal to:
<c>
but was
<ć>this assertion object.Copyright © 2025. All rights reserved.