public void testSample() {
assertNotNull(StringResource.get("content/Sample.html"));
}
public void testRenderSample() throws Exception {
HtmlCanvas html = new HtmlCanvas();
html.render(new StringResource("content/Sample.html",false));
}
public void testTextSample() throws Exception {
HtmlCanvas html = new HtmlCanvas();
html.write(StringResource.get("content/Sample.html"),false);
}