Commit 2ef3a63b authored by meus's avatar meus

fixed grouping and filtering of tests from the browser

parent 4640cb2b
......@@ -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();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment