1
0
Fork 0
mirror of synced 2025-04-03 05:13:37 +03:00

Strict standards: GroupTest::run and UnitTest::run should have the same signature

This commit is contained in:
jackbravo 2007-09-10 23:08:29 +00:00
parent f2ab7813fb
commit ca17b08ca1

View file

@ -33,7 +33,7 @@ class GroupTest extends UnitTestCase
} }
return true; return true;
} }
public function run(HtmlReporter $reporter, $filter) public function run(HtmlReporter $reporter = null, $filter = null)
{ {
$reporter->paintHeader(); $reporter->paintHeader();
foreach ($this->_testCases as $k => $testCase) { foreach ($this->_testCases as $k => $testCase) {
@ -160,7 +160,7 @@ class UnitTestCase
} }
$this->_failed++; $this->_failed++;
} }
public function run() public function run(HtmlReporter $reporter = null, $filter = null)
{ {
foreach (get_class_methods($this) as $method) { foreach (get_class_methods($this) as $method) {
if (substr($method, 0, 4) === 'test') { if (substr($method, 0, 4) === 'test') {