public void testInitMethodReader()
{
final boolean readAnnotations = reader.readAnnotations(ActionWithLifecycleMethods.class);
assert readAnnotations;
final LifecycleMethodAware initMethodAware = createMock(LifecycleMethodAware.class);
initMethodAware.setInitMethod(isA(Method.class));
initMethodAware.setCloseMethod(isA(Method.class));
replay(initMethodAware);
reader.populateController(initMethodAware);
verify(initMethodAware);
}