mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
Making CodeCoverageManager get its settings from the reporter. This
makes code coverage much less reliant on GET parameters.
This commit is contained in:
parent
03da53bb92
commit
d79bacd1ed
1 changed files with 6 additions and 6 deletions
|
@ -96,24 +96,24 @@ class CodeCoverageManager {
|
||||||
*/
|
*/
|
||||||
function start($testCaseFile, &$reporter) {
|
function start($testCaseFile, &$reporter) {
|
||||||
$manager =& CodeCoverageManager::getInstance();
|
$manager =& CodeCoverageManager::getInstance();
|
||||||
$manager->reporter = $reporter;
|
$manager->reporter =& $reporter;
|
||||||
$testCaseFile = str_replace(DS . DS, DS, $testCaseFile);
|
$testCaseFile = str_replace(DS . DS, DS, $testCaseFile);
|
||||||
$thisFile = str_replace('.php', '.test.php', basename(__FILE__));
|
$thisFile = str_replace('.php', '.test.php', basename(__FILE__));
|
||||||
|
|
||||||
if (strpos($testCaseFile, $thisFile) !== false) {
|
if (strpos($testCaseFile, $thisFile) !== false) {
|
||||||
trigger_error('Xdebug supports no parallel coverage analysis - so this is not possible.', E_USER_ERROR);
|
trigger_error('Xdebug supports no parallel coverage analysis - so this is not possible.', E_USER_ERROR);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($_GET['app'])) {
|
if ($reporter->params['app']) {
|
||||||
$manager->appTest = true;
|
$manager->appTest = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($_GET['group'])) {
|
if ($reporter->params['group']) {
|
||||||
$manager->groupTest = true;
|
$manager->groupTest = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($_GET['plugin'])) {
|
if ($reporter->params['plugin']) {
|
||||||
$manager->pluginTest = Inflector::underscore($_GET['plugin']);
|
$manager->pluginTest = Inflector::underscore($reporter->params['plugin']);
|
||||||
}
|
}
|
||||||
$manager->testCaseFile = $testCaseFile;
|
$manager->testCaseFile = $testCaseFile;
|
||||||
xdebug_start_code_coverage(XDEBUG_CC_UNUSED | XDEBUG_CC_DEAD_CODE);
|
xdebug_start_code_coverage(XDEBUG_CC_UNUSED | XDEBUG_CC_DEAD_CODE);
|
||||||
|
|
Loading…
Reference in a new issue