| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php declare(strict_types=1); |
||
| 45 | public function testList() : void |
||
| 46 | { |
||
| 47 | $container = $this->getContainer(); |
||
| 48 | $doctrine = $container->get('doctrine'); |
||
| 49 | |||
| 50 | $entityManager = $doctrine->getManager('slave'); |
||
| 51 | $this->createDatabaseSchema($entityManager); |
||
| 52 | |||
| 53 | $entryManager = $container->get('entryManager'); |
||
| 54 | $this->assertSame([], $entryManager->getList(null, null)); |
||
| 55 | |||
| 59 |