@Test
public void testActionRuntime() throws Exception {
MockApplication<?> app = application("plugin.controller.action.throwable.runtime").init();
//
MockClient client = app.client();
MockViewBridge render = client.render();
MockRequestBridge request = client.invoke(render.assertStringResponse());
request.assertFailure(ConcurrentModificationException.class);
}