Package org.rendersnake.ext.servlet

Examples of org.rendersnake.ext.servlet.HtmlServletCanvas.toHtml()


public class HtmlServletCanvasTest extends TestCase {
    public void testCreateWithReqResp() {
        HtmlServletCanvas html = new HtmlServletCanvas(new MockHttpRequest(), new MockHttpResponse(), new StringWriter());
        assertNotNull(html.request);
        assertNotNull(html.response);
        assertNotNull(html.toHtml());
        assertTrue(html.toHtml().length() == 0);
    }
}
View Full Code Here


    public void testCreateWithReqResp() {
        HtmlServletCanvas html = new HtmlServletCanvas(new MockHttpRequest(), new MockHttpResponse(), new StringWriter());
        assertNotNull(html.request);
        assertNotNull(html.response);
        assertNotNull(html.toHtml());
        assertTrue(html.toHtml().length() == 0);
    }
}
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.