Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function testConsoleListenerConfiguration(): void |
||
14 | { |
||
15 | $config = ApplicationDataProvider::getConsoleConfig(); |
||
16 | $container = ApplicationDataProvider::getConsoleContainer(); |
||
17 | |||
18 | $checker = $container->get(ListenerConfigurationChecker::class); |
||
19 | $checker->check($config->get('events-console')); |
||
20 | |||
21 | self::assertInstanceOf(ListenerConfigurationChecker::class, $checker); |
||
22 | } |
||
24 |