System.Net.WebHeaderCollectionTests.WebHeaderCollectionTest.Remove_EmptyCollection_Success C# (CSharp) 메소드

Remove_EmptyCollection_Success() 개인적인 메소드

private Remove_EmptyCollection_Success ( ) : void
리턴 void
        public void Remove_EmptyCollection_Success()
        {
            WebHeaderCollection w = new WebHeaderCollection();
            w.Remove("foo");
            Assert.Equal(0, w.Count);
            Assert.Empty(w);
            Assert.Empty(w.AllKeys);
        }
WebHeaderCollectionTest