Ejemplo n.º 1
0
        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);
        }