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