Beispiel #1
0
        public void ChangeByIndexTest(int[] array, int index, int value, int[] expArray)
        {
            ListArray expected = new ListArray(expArray);
            ListArray actual   = new ListArray(array);

            actual.ChangeByIndex(index, value);

            Assert.AreEqual(expected, actual);
        }