Example #1
0
        public void TestIsEmpty()
        {
            VisitableList <int> l = GetTestList();

            Assert.AreEqual(l.IsEmpty, false);

            l.Clear();
            Assert.AreEqual(l.IsEmpty, true);

            l = new VisitableList <int>();
            Assert.AreEqual(l.IsEmpty, true);
        }