Package org.rendersnake.inside

Source Code of org.rendersnake.inside.FancyHeaderTest

package org.rendersnake.inside;

import org.junit.Test;
import org.rendersnake.HtmlCanvas;

public class FancyHeaderTest {
    @Test
    public void test() throws Exception {
       
        HtmlCanvas html = new HtmlCanvas();
        html
            .render(new FancyHeader.Before())
            .write("Hello")
            .render(new FancyHeader.After());
       
        System.out.println(html.toHtml());
    }
}
TOP

Related Classes of org.rendersnake.inside.FancyHeaderTest

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.