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

Getter_EmptyCollection_Success() 개인적인 메소드

private Getter_EmptyCollection_Success ( ) : void
리턴 void
        public void Getter_EmptyCollection_Success()
        {
            WebHeaderCollection w = new WebHeaderCollection();
            Assert.Null(w["name"]);
            Assert.Equal(0, w.Count);
            Assert.Empty(w);
            Assert.Empty(w.AllKeys);
        }
WebHeaderCollectionTest