System.Net.Http.WinHttpHandlerUnitTests.WinHttpHandlerTest.Properties_Get_CountIsZero C# (CSharp) Method

Properties_Get_CountIsZero() private method

private Properties_Get_CountIsZero ( ) : void
return void
        public void Properties_Get_CountIsZero()
        {
            var handler = new WinHttpHandler();
            IDictionary<String, object> dict = handler.Properties;
            Assert.Equal(0, dict.Count);
        }
WinHttpHandlerTest