public void RemoveShouldRemove() { //arrange var collection = new StringCollection(); //act collection.Add("abc"); collection.Remove("abc"); //assert Assert.True(collection.IsEmpty()); }