mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
Make PHPUnit_Framework_TestListener implementations compatible to 4.0.
This commit is contained in:
parent
f9091a8584
commit
e85fe01faf
2 changed files with 6 additions and 0 deletions
|
|
@ -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) {
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue