Example #1
0
        // 24. Добавление списка в конец
        public void AddNewListToEndList_Tests(int[] list, int[] actualArray, int[] expectedArray)
        {
            ArrayList expected = new ArrayList(expectedArray);
            ArrayList actual   = new ArrayList(list);

            actual.AddNewListToEndList(actualArray);

            Assert.AreEqual(expected, actual);
        }