Package org.rendersnake

Examples of org.rendersnake.HtmlAttributes.class_()


   
    public void testConstructor() {
        HtmlAttributes one = new HtmlAttributes();
        one.id("id");
        HtmlAttributes withClass = new HtmlAttributes(one);
        withClass.class_("class");
        Assert.assertEquals(" id=\"id\"", one.toHtml());
        Assert.assertEquals(" id=\"id\" class=\"class\"", withClass.toHtml());
    }
   
    public void testtestdata() throws IOException {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.