getMock('ConsoleOutput', array(), array(), '', false); $in = $this->getMock('ConsoleInput', array(), array(), '', false); $this->Shell = $this->getMock( 'ApiShell', array('in', 'out', 'createFile', 'hr', '_stop'), array( $out, $out, $in) ); } /** * Test that method names are detected properly including those with no arguments. * * @return void */ public function testMethodNameDetection () { $this->Shell->expects($this->any())->method('in')->will($this->returnValue('q')); $this->Shell->expects($this->at(0))->method('out')->with('Controller'); $expected = array( '1. afterFilter()', '2. beforeFilter()', '3. beforeRender()', '4. constructClasses()', '5. disableCache()', '6. flash($message, $url, $pause = 1, $layout = \'flash\')', '7. getResponse()', '8. header($status)', '9. httpCodes($code = NULL)', '10. isAuthorized()', '11. loadModel($modelClass = NULL, $id = NULL)', '12. paginate($object = NULL, $scope = array (), $whitelist = array ())', '13. postConditions($data = array (), $op = NULL, $bool = \'AND\', $exclusive = false)', '14. redirect($url, $status = NULL, $exit = true)', '15. referer($default = NULL, $local = false)', '16. render($action = NULL, $layout = NULL, $file = NULL)', '17. set($one, $two = NULL)', '18. setAction($action)', '19. shutdownProcess()', '20. startupProcess()', '21. validate()', '22. validateErrors()' ); $this->Shell->expects($this->at(2))->method('out')->with($expected); $this->Shell->args = array('controller'); $this->Shell->paths['controller'] = LIBS . 'controller' . DS; $this->Shell->main(); } }