1 | <?php |
||
23 | abstract class AbstractPHPUnitCompatibilityTestCase 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 | /** |
||
41 | * This method is called when a test method did not execute successfully. |
||
42 | * |
||
43 | * @param \Exception $e |
||
|
|||
44 | * |
||
45 | * @return void |
||
46 | */ |
||
47 | abstract protected function onNotSuccessfulTestCompatibilized(\Exception $e); |
||
48 | |||
49 | } |
||
50 | } |
||
85 |