mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Support PHPUnit 3.8+ compatibility
Summary: PHPUnit 3.8+ adds a method to its PHPUnit_Framework_TestListener called addRiskyTest(). Need to stub it out to avoid "must implement this interface method" fatals when using 3.8+ Test Plan: Reviewers: CC: Task ID: # Blame Rev:
This commit is contained in:
parent
4b757ea912
commit
55ed5a6495
@ -246,6 +246,18 @@ class SapphireTestReporter implements PHPUnit_Framework_TestListener {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Risky test.
|
||||||
|
*
|
||||||
|
* @param PHPUnit_Framework_Test $test
|
||||||
|
* @param Exception $e
|
||||||
|
* @param float $time
|
||||||
|
* @since Method available since Release 3.8.0
|
||||||
|
*/
|
||||||
|
public function addRiskyTest(PHPUnit_Framework_Test $test, Exception $e, $time) {
|
||||||
|
// Stub out to support PHPUnit 3.8
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Trys to get the original exception thrown by the test on failure/error
|
* Trys to get the original exception thrown by the test on failure/error
|
||||||
* to enable us to give a bit more detail about the failure/error
|
* to enable us to give a bit more detail about the failure/error
|
||||||
|
@ -38,6 +38,18 @@ class SS_TestListener implements PHPUnit_Framework_TestListener {
|
|||||||
$this->class->tearDownOnce();
|
$this->class->tearDownOnce();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Risky test.
|
||||||
|
*
|
||||||
|
* @param PHPUnit_Framework_Test $test
|
||||||
|
* @param Exception $e
|
||||||
|
* @param float $time
|
||||||
|
* @since Method available since Release 3.8.0
|
||||||
|
*/
|
||||||
|
public function addRiskyTest(PHPUnit_Framework_Test $test, Exception $e, $time) {
|
||||||
|
// Stub out to support PHPUnit 3.8
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param String Classname
|
* @param String Classname
|
||||||
* @return boolean
|
* @return boolean
|
||||||
|
Loading…
Reference in New Issue
Block a user