mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-31 09:06:17 +00:00
42 lines
No EOL
1.3 KiB
PHP
42 lines
No EOL
1.3 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.tests.libs
|
|
* @since CakePHP(tm) v 2.0
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
|
*/
|
|
require 'PHPUnit/TextUI/TestRunner.php';
|
|
|
|
PHP_CodeCoverage_Filter::getInstance()->addFileToBlacklist(__FILE__, 'DEFAULT');
|
|
|
|
/**
|
|
* Class to customize loading of test suites from CLI
|
|
*
|
|
* @package cake.tests.lib
|
|
*/
|
|
class CakeTestRunner extends PHPUnit_TextUI_TestRunner {
|
|
|
|
public function doRun(PHPUnit_Framework_Test $suite, array $arguments = array()) {
|
|
$fixture = new CakeFixtureManager;
|
|
foreach ($suite->getIterator() as $test) {
|
|
if ($test instanceof CakeTestCase) {
|
|
$fixture->fixturize($test);
|
|
$test->fixtureManager = $fixture;
|
|
}
|
|
}
|
|
$r = parent::doRun($suite, $arguments);
|
|
$fixture->shutdown();
|
|
return $r;
|
|
}
|
|
} |