Ejemplo n.º 1
0
        public void AList0_AddEnd_error()
        {
            AList0 al = new AList0(new int[] { 1, 2, 9, 5, 6, 7 });

            al.AddEnd(42);
            Assert.AreEqual("1 2 9 5 6 7 42 ", al.ToString());
        }