From 2ef3a63be61d6760ee6ff0750090fc50e644533b Mon Sep 17 00:00:00 2001 From: meus Date: Mon, 5 Nov 2007 00:29:52 +0000 Subject: [PATCH] fixed grouping and filtering of tests from the browser --- tests/DoctrineTest.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/DoctrineTest.php b/tests/DoctrineTest.php index 6d6519cd7..cea7d057f 100644 --- a/tests/DoctrineTest.php +++ b/tests/DoctrineTest.php @@ -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(); }