Esempio n. 1
0
        public void AddToFirstPlaceTests(int[] array, int value, int[] expArray)

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

            actual.AddToFirstPlace(value);

            Assert.AreEqual(expected, actual);
        }