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