public void TestRenderWithXType() { _button = new Button(); _button.RenderWithXType(); _result.Clear(); _result.Add( "{}" ); AssertEqual(); }
public void TestRenderWithXType_Text() { _button = new Button(); _button.RenderWithXType().Text( "a" ); _result.Clear(); _result.Add( "{\"text\":\"a\"}" ); AssertEqual(); }