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

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