public void llist2_Sort_error() { LList2 ll = new LList2(new int[] { 2, 1, 9, 5, 6, 7 }); ll.Sort(); Assert.AreEqual("1 2 5 6 7 9 ", ll.ToString()); }