@Test
public void testRenderChecked() throws Exception {
MockApplication<?> app = application("plugin.controller.view.throwable.checked").init();
//
MockClient client = app.client();
MockViewBridge render = client.render();
render.assertFailure(AuthenticationException.class);
}