Make PHPUnit_Framework_TestListener implementations compatible to 4.0.

remotes/origin/ldap_group_count
Andreas Fischer 10 years ago
parent f9091a8584
commit e85fe01faf

@ -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…
Cancel
Save