1 | <?php |
||
22 | abstract class PHPUnitCompatibilityTestCase extends \PHPUnit_Framework_TestCase |
||
23 | { |
||
24 | /** |
||
25 | * This method is called when a test method did not execute successfully. |
||
26 | * |
||
27 | * @param \Exception $e Exception. |
||
28 | * |
||
29 | * @return void |
||
30 | */ |
||
31 | protected function onNotSuccessfulTest($e) |
||
37 | |||
38 | abstract protected function onNotSuccessfulTestCompatibilized($e); |
||
39 | } |
||
2 ignored issues
–
show
|
|||
40 | } else { |
||
64 | } |