public void Should_apply_header_html_attributes()
        {
            const string key   = "foo";
            const string value = "bar";

            var headerAttributes = new Dictionary <string, object> {
                { key, value }
            };

            var cell = new GridHeaderCellBuilder(headerAttributes, delegate { }).CreateCell();

            cell.Attribute(key).ShouldEqual(value);
        }
        public void Should_apply_header_html_attributes()
        {
            const string key = "foo";
            const string value = "bar";

            var headerAttributes = new Dictionary<string, object> {{key, value}};

            var cell = new GridHeaderCellBuilder(headerAttributes, delegate { }).CreateCell();
            cell.Attribute(key).ShouldEqual(value);
        }