Strict standards: GroupTest::run and UnitTest::run should have the same signature
This commit is contained in:
parent
f2ab7813fb
commit
ca17b08ca1
1 changed files with 2 additions and 2 deletions
|
@ -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') {
|
||||||
|
|
Loading…
Add table
Reference in a new issue