public void TestClear()
        {
            //Assign
            list.AddLast(1);
            list.AddLast(2);

            //Act
            list.Clear();

            //Assert
            Assert.IsNull(list[0]);
            Assert.AreEqual(list.Count(), 0);
        }