1
0
mirror of synced 2025-02-20 14:13:15 +03:00

fixed grouping and filtering of tests from the browser

This commit is contained in:
meus 2007-11-05 00:29:52 +00:00
parent 4640cb2be4
commit 2ef3a63be6

View File

@ -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();
}