Package org.rendersnake

Examples of org.rendersnake.HtmlAttributes


    public void test_dt_null() throws Exception {
        assertEquals("<dt></dt>", html.dt(null)._dt().toHtml());
    }

    public void test_dt_attrs() throws Exception {
        assertEquals("<dt></dt>", html.dt(new HtmlAttributes())._dt().toHtml());
    }
View Full Code Here


    public void test_hr_null() throws Exception {
        assertEquals("<hr/>", html.hr(null).toHtml());
    }

    public void test_hr_attrs() throws Exception {
        assertEquals("<hr/>", html.hr(new HtmlAttributes()).toHtml());
    }
View Full Code Here

    public void test_sub_null() throws Exception {
        assertEquals("<sub></sub>", html.sub(null)._sub().toHtml());
    }

    public void test_sub_attrs() throws Exception {
        assertEquals("<sub></sub>", html.sub(new HtmlAttributes())._sub().toHtml());
    }
View Full Code Here

    public void test_optgroup_null() throws Exception {
        assertEquals("<optgroup></optgroup>", html.optgroup(null)._optgroup().toHtml());
    }

    public void test_optgroup_attrs() throws Exception {
        assertEquals("<optgroup></optgroup>", html.optgroup(new HtmlAttributes())._optgroup().toHtml());
    }
View Full Code Here

    public void test_param_null() throws Exception {
        assertEquals("<param/>", html.param(null).toHtml());
    }

    public void test_param_attrs() throws Exception {
        assertEquals("<param/>", html.param(new HtmlAttributes()).toHtml());
    }
View Full Code Here

    public void test_bdo_null() throws Exception {
        assertEquals("<bdo></bdo>", html.bdo(null)._bdo().toHtml());
    }

    public void test_bdo_attrs() throws Exception {
        assertEquals("<bdo></bdo>", html.bdo(new HtmlAttributes())._bdo().toHtml());
    }
View Full Code Here

    public void test_var_null() throws Exception {
        assertEquals("<var></var>", html.var(null)._var().toHtml());
    }

    public void test_var_attrs() throws Exception {
        assertEquals("<var></var>", html.var(new HtmlAttributes())._var().toHtml());
    }
View Full Code Here

    public void test_link_null() throws Exception {
        assertEquals("<link/>", html.link(null).toHtml());
    }

    public void test_link_attrs() throws Exception {
        assertEquals("<link/>", html.link(new HtmlAttributes()).toHtml());
    }
View Full Code Here

    public void test_div_null() throws Exception {
        assertEquals("<div></div>", html.div(null)._div().toHtml());
    }

    public void test_div_attrs() throws Exception {
        assertEquals("<div></div>", html.div(new HtmlAttributes())._div().toHtml());
    }
View Full Code Here

    public void test_object_null() throws Exception {
        assertEquals("<object></object>", html.object(null)._object().toHtml());
    }

    public void test_object_attrs() throws Exception {
        assertEquals("<object></object>", html.object(new HtmlAttributes())._object().toHtml());
    }
View Full Code Here

TOP

Related Classes of org.rendersnake.HtmlAttributes

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.