System.Net.Mime.Tests.ContentDispositionTest.GetCustomerParameterThatIsNotSet_ShouldReturnNull C# (CSharp) Method

GetCustomerParameterThatIsNotSet_ShouldReturnNull() private method

private GetCustomerParameterThatIsNotSet_ShouldReturnNull ( ) : void
return void
        public void GetCustomerParameterThatIsNotSet_ShouldReturnNull()
        {
            var cd = new ContentDisposition("inline");

            Assert.Null(cd.Parameters["doesnotexist"]);
            Assert.Equal("inline", cd.DispositionType);
            Assert.True(cd.Inline);
        }