| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | public function testServiceWiring() |
||
| 11 | { |
||
| 12 | $kernel = new AppTestKernel('test', true); |
||
| 13 | $kernel->boot(); |
||
| 14 | |||
| 15 | $container = $kernel->getContainer(); |
||
| 16 | |||
| 17 | $nativeQueryBuilderService = $container->get(NativeQueryBuilder::class); |
||
| 18 | |||
| 19 | $this->assertInstanceOf(NativeQueryBuilder::class, $nativeQueryBuilderService); |
||
| 20 | } |
||
| 22 |