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

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