assertArrayEquals

Asserts that the arrays are equal.

  1. void assertArrayEquals(T[] actual, U[] expected, string msg, string file, size_t line)
    void
    assertArrayEquals
    (
    T
    U
    )
    (
    in T[] actual
    ,
    in U[] expected
    ,
    lazy string msg = null
    ,
    string file = __FILE__
    ,
    size_t line = __LINE__
    )
  2. void assertArrayEquals(T[V] actual, U[V] expected, string msg, string file, size_t line)

Throws

AssertException otherwise

Meta