assertArrayEquals

Asserts that the associative arrays are equal.

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

Throws

AssertException otherwise

Meta