MvcContrib.UnitTests.UI.Grid.GridRendererTester.Should_render_custom_attributes_in_table_cell_with_logic C# (CSharp) Méthode

Should_render_custom_attributes_in_table_cell_with_logic() private méthode

        public void Should_render_custom_attributes_in_table_cell_with_logic()
        {
            _people.Add(new Person() { Name = "foo"});
            ColumnFor(x => x.Name).Attributes(row => new Hash(foo => row.IsAlternate ? "bar" : "baz" ));
            string expected =
                "<table class=\"grid\"><thead><tr><th>Name</th></tr></thead><tbody><tr class=\"gridrow\"><td foo=\"baz\">Jeremy</td></tr><tr class=\"gridrow_alternate\"><td foo=\"bar\">foo</td></tr></tbody></table>";
            RenderGrid().ShouldEqual(expected);
        }
GridRendererTester