| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 37 | public function testAutowiredService() |
||
| 38 | { |
||
| 39 | /** @var AutowiredService $autowiredService */ |
||
| 40 | $autowiredService = $this->container->getByType(AutowiredService::class); |
||
| 41 | $this->assertInstanceOf(AutowiredService::class, $autowiredService); |
||
| 42 | $this->assertInstanceOf(SomeService::class, $autowiredService->getSomeService()); |
||
| 43 | } |
||
| 44 | } |
||
| 45 |