Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php declare(strict_types = 1); |
||
46 | public function testLoadExtension(): void |
||
47 | { |
||
48 | $this->container->loadFromExtension($this->extension->getAlias()); |
||
49 | $this->container->compile(); |
||
50 | |||
51 | // Check that services have been loaded |
||
52 | static::assertTrue($this->container->has('timestamp.type')); |
||
53 | } |
||
54 | } |
||
55 |