Package br.com.objectos.way.ui.builder

Examples of br.com.objectos.way.ui.builder.HtmlTable


*/
@Test
public class HtmlTableTest {

  public void table_test() {
    HtmlTable ui = Html.table().end();

    assertThat(ui, hasToString(equalTo("<table></table>")));
  }
View Full Code Here


    assertThat(ui, hasToString(equalTo("<table></table>")));
  }

  public void table_class() {
    HtmlTable ui = table()
        .styleClass("tac")
        .end();

    assertThat(ui, hasToString(equalTo("<table class=\"tac\"></table>")));
  }
View Full Code Here

  @Test(enabled = false)
  public void html_string() {
    String contra = "/tabela-completa.mustache";
    String prova = HtmlsFalso.toString(contra);

    HtmlTable ui = table()
        .add(
            thead()
                .add(th().end())
                .end()
        )
View Full Code Here

TOP

Related Classes of br.com.objectos.way.ui.builder.HtmlTable

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.