public virtual void TestClear() { NUnit.Framework.Assert.IsFalse(set.IsEmpty()); NUnit.Framework.Assert.AreEqual(3, set.Count); set.Clear(); NUnit.Framework.Assert.IsTrue(set.IsEmpty()); NUnit.Framework.Assert.AreEqual(0, set.Count); }