assertFalse("handled", handled);
}
@Test
public void dispatcherReturnFalseForPageWithoutAnnotation() throws Exception {
this.addPage("user", new UserPageMock());
final Request request = new RequestMock("/user/1");
final Response response = new ResponseMock();
final boolean handled = this.dispatcher.dispatch(request, response);
assertFalse("handled", handled);
}