| Total Complexity | 2 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | final class DocBlockResolverAwareTest extends TestCase |
||
| 10 | { |
||
| 11 | public function test_existing_service(): void |
||
| 12 | { |
||
| 13 | $dummy = new DummyDocBlockResolverAware(); |
||
| 14 | $actual = $dummy->getRepository()->findName(); |
||
| 15 | |||
| 16 | self::assertSame('name', $actual); |
||
| 17 | } |
||
| 18 | |||
| 19 | public function test_non_existing_service(): void |
||
| 25 | } |
||
| 26 | } |
||
| 27 |