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