MockApplication<?> app = application("plugin.template.throwable.runtime").init();
//
MockClient client = app.client();
MockViewBridge render = client.render();
TemplateExecutionException te = render.assertFailure(TemplateExecutionException.class);
assertInstanceOf(ConcurrentModificationException.class, te.getCause());
}