| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 14 | 
| Code Lines | 9 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); | ||
| 9 | protected function setUp(): void | ||
| 10 |     { | ||
| 11 | parent::setUp(); | ||
| 12 | |||
| 13 | $this->setUpEntitySchema([ | ||
| 14 | GH7512EntityA::class, | ||
| 15 | GH7512EntityB::class, | ||
| 16 | GH7512EntityC::class | ||
| 17 | ]); | ||
| 18 | |||
| 19 | $this->_em->persist(new GH7512EntityA()); | ||
| 20 | $this->_em->persist(new GH7512EntityC()); | ||
| 21 | $this->_em->flush(); | ||
| 22 | $this->_em->clear(); | ||
| 23 | } | ||
| 84 |