public void TestBubbleSortSmallBig() { list.Add(3); list.Add(2); list.BubbleSortSmallBig(); Assert.AreEqual("[1, 2, 2, 3, 3, 4]", list.Show); }