| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 38 | public function testIssue(): void |
||
| 39 | { |
||
| 40 | $person = new GH6884Person(); |
||
| 41 | $person2 = new GH6884Person(); |
||
| 42 | |||
| 43 | $this->_em->persist($person); |
||
| 44 | $this->_em->persist($person2); |
||
| 45 | $this->_em->flush(); |
||
| 46 | |||
| 47 | $person->isAlive = true; |
||
| 48 | $person2->isAlive = true; |
||
| 49 | |||
| 50 | $this->_em->flush(); |
||
| 51 | } |
||
| 75 |