1 | <?php |
||
10 | class UnitTestsBootstrap |
||
11 | { |
||
12 | /** |
||
13 | * Bootstraps the system for unit tests. |
||
14 | */ |
||
15 | public function bootstrapSystem() |
||
20 | |||
21 | /** |
||
22 | * Makes sure error messages during the tests get displayed no matter what is set in php.ini. |
||
23 | * |
||
24 | * @return UnitTestsBootstrap fluent interface |
||
25 | */ |
||
26 | protected function enableDisplayErrors() |
||
32 | |||
33 | /** |
||
34 | * Provides the default configuration. |
||
35 | * |
||
36 | * @return UnitTestsBootstrap fluent interface |
||
37 | */ |
||
38 | protected function initializeConfiguration() |
||
45 | } |
||
46 | |||
53 |