public void DropDownHtmlAttributes_be_able_to_set_dropdown_html_attributes()
        {
            builder.DropDownHtmlAttributes(new { @class = "foo" });

            Assert.Equal("foo", dropDownList.DropDownHtmlAttributes["class"]);
        }