public void testRenderRuntime() throws Exception {
MockApplication<?> app = application("plugin.controller.view.throwable.runtime").init();
//
MockClient client = app.client();
MockViewBridge render = client.render();
render.assertFailure(ConcurrentModificationException.class);
}