@Test
public void testOverrideBegin() throws Exception {
MockApplication<?> app = application("plugin.controller.lifecycle.overridebegin").init();
MockClient client = app.client();
MockViewBridge render = client.render();
render.assertStringResponse("begin");
Integer count = Registry.get("count");
assertEquals((Integer)0, count);
}
@Test