Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
21 | protected function setUp() |
||
22 | { |
||
23 | $this->extension = new AlgoliaSpecificationExtension(); |
||
24 | |||
25 | $this->container = new ContainerBuilder(); |
||
26 | $this->container->registerExtension($this->extension); |
||
27 | |||
28 | $this->container->loadFromExtension($this->extension->getAlias()); |
||
29 | $this->container->compile(); |
||
30 | } |
||
31 | |||
57 |