| Conditions | 3 |
| Paths | 3 |
| Total Lines | 13 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | public function testServices() |
||
| 8 | { |
||
| 9 | $container = $this->getContainer(); |
||
| 10 | |||
| 11 | foreach ($container->getServiceIds() as $serviceId) { |
||
| 12 | if (0 === strpos($serviceId, 'psi_grid')) { |
||
| 13 | $service = $container->get($serviceId); |
||
| 14 | |||
| 15 | // for the sake of incrementing the assertion count... |
||
| 16 | $this->assertNotNull($service); |
||
| 17 | } |
||
| 18 | } |
||
| 19 | } |
||
| 20 | } |
||
| 21 |