public void GetDescendingSort_WhenMethodCalled_SortbyAscending(int[] actualArray, int[] expectedArray) { MyArrayList actual = new MyArrayList(actualArray); MyArrayList expected = new MyArrayList(expectedArray); actual.GetDescendingSort(); Assert.AreEqual(expected, actual); }