fixing test runner to allow running custom groups
This commit is contained in:
parent
92e524885e
commit
d8ac77d5e1
1 changed files with 18 additions and 3 deletions
|
@ -423,13 +423,28 @@ if (PHP_SAPI === "cli") {
|
||||||
}
|
}
|
||||||
|
|
||||||
$argv = $_SERVER["argv"];
|
$argv = $_SERVER["argv"];
|
||||||
if (isset($argv[1]) && $argv[1] == "coverage") {
|
$coverage = false;
|
||||||
|
array_shift($argv);
|
||||||
|
if(isset($argv[1]) && $argv[1] == "coverage"){
|
||||||
|
array_shift($argv);
|
||||||
|
$coverage = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if( ! empty($argv)){
|
||||||
|
$testGroup = new GroupTest("Custom");
|
||||||
|
foreach($argv as $group){
|
||||||
|
$testGroup->addTestCase($$group);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$testGroup = $test;
|
||||||
|
}
|
||||||
|
if ($coverage) {
|
||||||
xdebug_start_code_coverage(XDEBUG_CC_UNUSED | XDEBUG_CC_DEAD_CODE);
|
xdebug_start_code_coverage(XDEBUG_CC_UNUSED | XDEBUG_CC_DEAD_CODE);
|
||||||
$test->run($reporter);
|
$testGroup->run($reporter);
|
||||||
$result["path"] = Doctrine::getPath() . DIRECTORY_SEPARATOR;
|
$result["path"] = Doctrine::getPath() . DIRECTORY_SEPARATOR;
|
||||||
$result["coverage"] = xdebug_get_code_coverage();
|
$result["coverage"] = xdebug_get_code_coverage();
|
||||||
xdebug_stop_code_coverage();
|
xdebug_stop_code_coverage();
|
||||||
file_put_contents("coverage.txt", serialize($result));
|
file_put_contents("coverage.txt", serialize($result));
|
||||||
} else {
|
} else {
|
||||||
$test->run($reporter);
|
$testGroup->run($reporter);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue