verify(getTemplateProcessor(runtime), atLeastOnce()).hasTemplate(templateName);
}
@Test
public void testHandleResponseTemplateWithAnnotation() {
final Runtime runtime = createRuntime();
handleGet("/handleResponseTemplateWithAnnotation", new MockWebScriptRequest().format("html").runtime(runtime),
new MockWebScriptResponse().writer(new StringWriter()));
verify(handler).handleResponseTemplateWithAnnotation();
final String templateName = templateNameForHandlerMethod("handleResponseTemplateWithAnnotation");
verify(getTemplateProcessor(runtime), atLeastOnce()).hasTemplate(templateName);