mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-19 02:56:15 +00:00
59 lines
1.6 KiB
PHP
59 lines
1.6 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* TestRunner for CakePHP Test suite.
|
||
|
*
|
||
|
* PHP 5
|
||
|
*
|
||
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
||
|
* Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||
|
*
|
||
|
* Licensed under The MIT License
|
||
|
* Redistributions of files must retain the above copyright notice.
|
||
|
*
|
||
|
* @copyright Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||
|
* @link http://cakephp.org CakePHP(tm) Project
|
||
|
* @package cake
|
||
|
* @subpackage cake.cake.tests.libs
|
||
|
* @since CakePHP(tm) v 2.0
|
||
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||
|
*/
|
||
|
|
||
|
|
||
|
require 'PHPUnit/TextUI/Command.php';
|
||
|
require 'test_manager.php';
|
||
|
|
||
|
PHPUnit_Util_Filter::addFileToFilter(__FILE__, 'DEFAULT');
|
||
|
|
||
|
/**
|
||
|
* Class to customize loading of test suites from CLI
|
||
|
*
|
||
|
* @package cake
|
||
|
* @subpackage cake.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']);
|
||
|
}
|
||
|
}
|
||
|
}
|