assertArrayEquals

Asserts that the associative arrays are equal.

  1. void assertArrayEquals(in T[] actual, in U[] expected, lazy string msg = null, string file = __FILE__, size_t line = __LINE__)
  2. void assertArrayEquals(in T[V] actual, in U[V] expected, lazy string msg = null, string file = __FILE__, size_t line = __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