예제 #1
0
        public void TestListPopFront()
        {
            CList <string> l1 = new CList <string>();

            l1.Append("abcd");
            l1.Append("qwerty");
            l1.Append("hello");
            l1.Append("world");
            l1.PopFront();
            Assert.AreEqual(l1.Length, 3);
            Assert.AreEqual("[qwerty, hello, world]", l1.ToString());
        }