@Test
public void testMessage() throws Exception {
MockApplication<?> app = application("plugin.template.message").init();
app.addMessage(Locale.ENGLISH, "the_key", "the_key_en");
MockClient client = app.client();
assertEquals("(the_key_en,)", client.render().assertStringResponse());
}
@Test
public void testPrecompileGroovy() throws Exception {
MockApplication<File> app = application("plugin.template.simple").init();