addFileToBlacklist(__FILE__, 'DEFAULT'); /** * Class to customize loading of test suites from CLI * * @package cake.tests.lib */ class TestRunner extends PHPUnit_TextUI_Command { /** * Construct method * * @param array $params list of options to be used for this run */ public function __construct($params = array()) { $this->_params = $params; } /** * Sets the proper test suite to use and loads the test file in it. * this method gets called as a callback from the parent class * * @return void */ protected function handleCustomTestSuite() { $manager = new TestManager($this->_params); if (!empty($this->_params['case'])) { $this->arguments['test'] = $manager->getTestSuite(); $this->arguments['test']->setFixtureManager($manager->getFixtureManager()); $manager->loadCase($this->_params['case'] . '.test.php', $this->arguments['test']); } } }