Exemple #1
0
        public void DeleteByIndexTest(int[] array, int index, int[] expArray)

        {
            ListArray expected = new ListArray(expArray);
            ListArray actual   = new ListArray(array);

            actual.DeleteByIndex(index);

            Assert.AreEqual(expected, actual);
        }