public void RemoveNonExistentTest() { StringCollection col = new StringCollection(); String test = "foo", test2 = "bar"; col.Add(test); col.Add(test2); col.Remove("baz"); }
public void RemoveTest() { StringCollection col = new StringCollection(); String test = "foo", test2 = "bar"; col.Add(test); col.Add(test2); col.RemoveAt(1); Assert.IsTrue(col.Contains(test)); Assert.IsFalse(col.Contains(test2)); col.Remove(test); Assert.IsFalse(col.Contains(test)); }