Class Char2DArrayAssert

    • Field Detail

      • failures

        private final org.assertj.core.internal.Failures failures
      • char2dArrays

        protected org.assertj.core.internal.Char2DArrays char2dArrays
    • Constructor Detail

      • Char2DArrayAssert

        public Char2DArrayAssert​(char[][] actual)
    • Method Detail

      • isDeepEqualTo

        public Char2DArrayAssert isDeepEqualTo​(char[][] expected)
        Verifies that the actual 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'}});
        Specified by:
        isDeepEqualTo in class Abstract2DArrayAssert<Char2DArrayAssert,​char[][],​Character>
        Parameters:
        expected - the given value to compare the actual value to.
        Returns:
        this assertion object.
        Throws:
        AssertionError - if the actual value is not deeply equal to the given one.
      • isEqualTo

        public Char2DArrayAssert isEqualTo​(Object expected)
        Verifies that the actual 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'}});
        Specified by:
        isEqualTo in interface Assert<Char2DArrayAssert,​char[][]>
        Overrides:
        isEqualTo in class AbstractAssert<Char2DArrayAssert,​char[][]>
        Parameters:
        expected - the given value to compare the actual char[][] to.
        Returns:
        this assertion object.
        Throws:
        AssertionError - if the actual char[][] is not equal to the given one.
      • isNullOrEmpty

        public 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.

        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();
        Throws:
        AssertionError - if the actual char[][] is not null or not empty.
      • isEmpty

        public 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.

        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();
        Throws:
        AssertionError - if the actual char[][] is not empty.
      • isNotEmpty

        public Char2DArrayAssert isNotEmpty()
        Verifies that the actual 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();
        Returns:
        this assertion object.
        Throws:
        AssertionError - if the actual char[][] is empty or null.
      • hasDimensions

        public Char2DArrayAssert hasDimensions​(int expectedFirstDimension,
                                               int expectedSecondDimension)
        Verifies that the actual 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); 
        Parameters:
        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[][].
        Returns:
        this assertion object.
        Throws:
        AssertionError - if the number of values of the actual char[][] is not equal to the given one.
      • hasSameDimensionsAs

        public Char2DArrayAssert hasSameDimensionsAs​(Object array)
        Verifies that the actual 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}});
        Parameters:
        array - the array to compare dimensions with actual char[][].
        Returns:
        this assertion object.
        Throws:
        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.
      • contains

        public Char2DArrayAssert contains​(char[] value,
                                          Index index)
        Verifies that the actual 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));
        Parameters:
        value - the value to look for.
        index - the index where the value should be stored in the actual char[][].
        Returns:
        myself assertion object.
        Throws:
        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.
      • doesNotContain

        public Char2DArrayAssert doesNotContain​(char[] value,
                                                Index index)
        Verifies that the actual 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));
        Parameters:
        value - the value to look for.
        index - the index where the value should be stored in the actual char[][].
        Returns:
        myself assertion object.
        Throws:
        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.
      • inUnicode

        public Char2DArrayAssert inUnicode()
        Use unicode character representation instead of standard representation in error messages.

        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
          <ć>
        Returns:
        this assertion object.