Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
20 | public function testDefaultOptions(): void |
||
21 | { |
||
22 | $processor = new Processor(); |
||
23 | |||
24 | $config = $processor->processConfiguration(new Configuration(), [[ |
||
25 | ]]); |
||
26 | |||
27 | $expected = [ |
||
28 | 'defaults' => [ |
||
29 | 'fontCache' => '%kernel.cache_dir%', |
||
30 | ], |
||
31 | ]; |
||
32 | |||
33 | static::assertSame($expected, $config); |
||
34 | } |
||
35 | |||
57 |