fixed grouping and filtering of tests from the browser
This commit is contained in:
parent
4640cb2be4
commit
2ef3a63be6
1 changed files with 6 additions and 0 deletions
|
@ -81,6 +81,12 @@ class DoctrineTest
|
|||
} else {
|
||||
require_once(dirname(__FILE__) . '/DoctrineTest/Reporter/Html.php');
|
||||
$options = $_GET;
|
||||
if(isset($options["filter"])){
|
||||
$options["filter"] = explode(",", $options["filter"]);
|
||||
}
|
||||
if(isset($options["group"])){
|
||||
$options["group"] = explode(",", $options["group"]);
|
||||
}
|
||||
$reporter = new DoctrineTest_Reporter_Html();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue