public void TestAdd() { TestDict t = new TestDict(); t.Add("hello"); t.Add("he"); t.Add("He"); Assert.AreEqual(2, t.Count); }
public void TestLookup() { TestDict t = new TestDict(); t.Add("hello"); t.Add("he"); t.Add("He"); Assert.IsFalse(t.LookUp("h")); Assert.IsTrue(t.LookUp("HE")); Assert.IsTrue(t.LookUp("he")); Assert.IsFalse(t.LookUp("hel")); Assert.IsFalse(t.LookUp("hell")); Assert.IsTrue(t.LookUp("Hello")); }