| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 29 | public function test_existing_service_cached(): void |
||
| 30 | { |
||
| 31 | self::assertCount(1, CustomServicesCache::getAll()); |
||
| 32 | |||
| 33 | $dummy = new DummyDocBlockResolverAware(); |
||
| 34 | $dummy->getRepository()->findName(); |
||
| 35 | $dummy->getRepository()->findName(); |
||
| 36 | |||
| 37 | self::assertCount(1, CustomServicesCache::getAll()); |
||
| 38 | } |
||
| 48 |