html.render(new PersonalPage());
assertEquals(3, html.renderCount);
}
public void testRenderCountDisabled() throws IOException {
DebugHtmlCanvas html = new DebugHtmlCanvas(new MockHttpRequest(), new MockHttpResponse(), new StringWriter());
html.enabled = false;
html.render(new PersonalPage());
assertEquals(0, html.renderCount);
}