@Test
public void testTitle() throws Exception {
MockApplication<?> app = application("plugin.template.tag.title").init();
//
MockClient client = app.client();
MockViewBridge render = client.render();
String url = render.assertStringResponse();
assertEquals("the_title", render.getTitle());
render = (MockViewBridge)client.invoke(url);
assertEquals("4", render.getTitle());
}