Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
14 | final class ReferenceRepositoryTest extends TestCase |
||
15 | { |
||
16 | /** |
||
17 | * @var ObjectManager|MockObject |
||
18 | */ |
||
19 | private $objectManager; |
||
20 | |||
21 | public function setUp(): void |
||
22 | { |
||
23 | $this->objectManager = $this->getMockForAbstractClass(ObjectManager::class); |
||
24 | } |
||
25 | |||
26 | /** |
||
27 | * Assert that the ReferenceRepository is of type \Doctrine\Common\DataFixtures\ReferenceRepository. |
||
28 | * |
||
29 | * @covers \Arp\LaminasDoctrineFixtures\Service\Repository\ReferenceRepository |
||
30 | */ |
||
31 | public function testExtendsReferenceRepository(): void |
||
36 | } |
||
37 | } |
||
38 |