예제 #1
0
        public void RemoveShouldRemove()
        {
            //arrange
            var collection = new StringCollection();

            //act
            collection.Add("abc");
            collection.Remove("abc");

            //assert
            Assert.True(collection.IsEmpty());
        }