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