예제 #1
0
        public void AppendStartShouldWork()
        {
            var Arr = new int[4] {
                1, 2, 5, 8
            };

            HW.AppendStart(ref Arr, 69);

            Arr.Should().HaveElementAt(0, 69);
        }