Assert.assertArrayEquals

Asserts that two object arrays are equal. If they are not, an {@link AssertionError} is thrown with the given message. If <code>expecteds</code> and <code>actuals</code> are <code>null</code>, they are considered equal.

@param message the identifying message for the {@link AssertionError} (<code>null</code> okay) @param expecteds Object array or array of arrays (multi-dimensional array) with expected values. @param actuals Object array or array of arrays (multi-dimensional array) with actual values

Meta