Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | public function testGetConfigTreeBuilder() |
||
17 | { |
||
18 | $configuration = new Configuration(); |
||
19 | |||
20 | $tree = $configuration->getConfigTreeBuilder(); |
||
21 | |||
22 | $this->assertInstanceOf(TreeBuilder::class, $tree); |
||
23 | |||
24 | $this->assertEquals( |
||
25 | 'algolia_specification_bundle', |
||
26 | $tree->buildTree()->getName() |
||
27 | ); |
||
28 | } |
||
29 | } |
||
30 |