コード例 #1
0
        public void AddValueToStart__WhenValuePassed_AddValueToStart(int value, int[] actualArray, int[] expectedArray)
        {
            MyArrayList actual   = new MyArrayList(actualArray);
            MyArrayList expected = new MyArrayList(expectedArray);

            actual.AddValueToStart(value);

            Assert.AreEqual(expected, actual);
        }