| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types = 1); |
||
| 34 | public function testLoadExtension(): void |
||
| 35 | { |
||
| 36 | $this->container->loadFromExtension($this->extension->getAlias()); |
||
| 37 | $this->container->compile(); |
||
| 38 | |||
| 39 | // Check that services have been loaded |
||
| 40 | self::assertTrue($this->container->has('boolean.type')); |
||
| 41 | } |
||
| 42 | } |
||
| 43 |