Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
34 | public function testDefaultConfiguration() |
||
35 | { |
||
36 | $this->container->loadFromExtension($this->extension->getAlias()); |
||
37 | $this->container->compile(); |
||
38 | |||
39 | $this->assertTrue($this->container->has('phpspreadsheet')); |
||
40 | $this->assertInstanceOf(ExcelFactory::class, $this->container->get('phpspreadsheet')); |
||
41 | |||
42 | $this->assertTrue($this->container->has('phpexcel')); |
||
43 | $this->assertInstanceOf(CompatibilityFactory::class, $this->container->get('phpexcel')); |
||
44 | } |
||
45 | } |
||
46 |