Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
25 | public function testClearScheduledForSynchronizationWhenCommitEmpty(): void |
||
26 | { |
||
27 | $entity = $this->_em->find(GH7629Entity::class, 1); |
||
28 | |||
29 | $this->_em->persist($entity); |
||
30 | $this->_em->flush(); |
||
31 | |||
32 | self::assertFalse($this->_em->getUnitOfWork()->isScheduledForDirtyCheck($entity)); |
||
33 | } |
||
49 |