Skip to content
Snippets Groups Projects
Commit e85fe01f authored by Andreas Fischer's avatar Andreas Fischer
Browse files

Make PHPUnit_Framework_TestListener implementations compatible to 4.0.

parent f9091a85
No related branches found
No related tags found
No related merge requests found
......@@ -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) {
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment