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

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


*/
@Test
public class HtmlUlOlLiTest {

  public void ul_teste() {
    HtmlUl ui = ul().end();

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


  public void ul_li() {
    String contra = "/html/ul-li.html";
    String prova = HtmlsFalso.toString(contra);

    HtmlUl ui = ul()
        .add(
            li().end()
        )
        .end();
View Full Code Here

TOP

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

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.