Package org.rendersnake.site

Source Code of org.rendersnake.site.ContentTest

package org.rendersnake.site;

import junit.framework.TestCase;

import org.rendersnake.HtmlCanvas;

public class ContentTest extends TestCase {

    private HtmlCanvas html;
   
    public void setUp() { html = new HtmlCanvas(); }
   
    public void testNestedContent() throws Exception{
        html.td().td().content("one").content("two");
        System.out.println(html.toHtml());
       
    }
}
TOP

Related Classes of org.rendersnake.site.ContentTest

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.