Merge pull request #8338 from owncloud/phpunit-4.0-compat

Make PHPUnit_Framework_TestListener implementations compatible to 4.0.

* owncloud/phpunit-4.0-compat:
  Normalise testcleanuplistener.php indentation and end of file.
  Make PHPUnit_Framework_TestListener implementations compatible to 4.0.
This commit is contained in:
Andreas Fischer 2014-04-24 22:00:12 +02:00
commit 5eafdf156c
2 changed files with 22 additions and 17 deletions

View File

@ -20,6 +20,9 @@ class StartSessionListener implements PHPUnit_Framework_TestListener {
public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $time) {
}
public function addRiskyTest(PHPUnit_Framework_Test $test, Exception $e, $time) {
}
public function addSkippedTest(PHPUnit_Framework_Test $test, Exception $e, $time) {
}

View File

@ -25,6 +25,9 @@ class TestCleanupListener implements PHPUnit_Framework_TestListener {
public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $time) {
}
public function addRiskyTest(PHPUnit_Framework_Test $test, Exception $e, $time) {
}
public function addSkippedTest(PHPUnit_Framework_Test $test, Exception $e, $time) {
}
@ -140,4 +143,3 @@ class TestCleanupListener implements PHPUnit_Framework_TestListener {
return count($proxies) > 0;
}
}
?>