assertEquals("aer", annotationTester.val);
}
@Test
public void shouldManageEvent() throws Exception {
EventMethodTester annotationTester = new EventMethodTester();
viewConfigurator.setupViewEngine(annotationTester);
engine.fireEvent(TestTypes.event, new ValueEvent<String>("air"));
assertEquals("air", annotationTester.val);
}