Micro micro = MicroGenericTest.micro;
@Test
public void testDemoHelper() throws Exception {
HelloHelper helper = (HelloHelper) micro.getSite().getHelperManager().findHelper("hello").getInstance(context);
Assert.isTrue(helper.getName().equals("Huston"));
Assert.isTrue(helper.getHello("Mona").equals("Hello Mona!"));
}