1 | <?php |
||
9 | class CustomConfigTest extends AbstractControllerTest |
||
10 | { |
||
11 | protected static $CONFIG_FILE = 'config_custom.yml'; |
||
12 | protected static $TEMP_PATH = '/../../tmp/functional/config/'; |
||
13 | |||
14 | // |
||
15 | // PhpUnit |
||
16 | // |
||
17 | |||
18 | /** |
||
19 | * @return array |
||
20 | */ |
||
21 | public function formatProvider() |
||
25 | |||
26 | // |
||
27 | // Tests |
||
28 | // |
||
29 | |||
30 | /** |
||
31 | * @param string $format |
||
32 | * @throws \Exception |
||
33 | * |
||
34 | * @dataProvider formatProvider |
||
35 | */ |
||
36 | public function testCustomConfig($format) |
||
44 | } |
||
45 |