Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | public function testPlugin() |
||
24 | { |
||
25 | $kernel = new AppKernel( |
||
26 | [], |
||
27 | [FilesystemPlugin::class] |
||
28 | ); |
||
29 | $kernel->run(); |
||
30 | /** @var FilesystemFacadeInterface $filesystem */ |
||
31 | $filesystem = $kernel->container()->get(FilesystemFacadeInterface::class); |
||
32 | |||
33 | $this->assertInstanceOf(FilesystemFacadeInterface::class, $filesystem); |
||
34 | } |
||
36 |