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

ToString_Empty_Success() 개인적인 메소드

private ToString_Empty_Success ( ) : void
리턴 void
        public void ToString_Empty_Success()
        {
            WebHeaderCollection w = new WebHeaderCollection();
            Assert.Equal("\r\n", w.ToString());
        }
WebHeaderCollectionTest