mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
Adding the test runner class to be able to load unit test cases using the PHPUnit cli tool
This commit is contained in:
parent
21ffdb0ab9
commit
f8ed99798a
1 changed files with 59 additions and 0 deletions
59
cake/tests/lib/test_runner.php
Normal file
59
cake/tests/lib/test_runner.php
Normal file
|
@ -0,0 +1,59 @@
|
||||||
|
<?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']);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue