Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
24 | public function setUp(): void |
||
25 | { |
||
26 | $this->container = $this->prophesize(ContainerInterface::class); |
||
27 | $this->em = $this->prophesize(EntityManagerInterface::class); |
||
28 | $this->container->get(EntityManager::class)->willReturn($this->em->reveal()); |
||
29 | |||
30 | $this->factory = new ConnectionFactory(); |
||
31 | } |
||
46 |