Total Complexity | 2 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
8 | class GH7629Test extends OrmFunctionalTestCase |
||
9 | { |
||
10 | /** |
||
11 | * {@inheritDoc} |
||
12 | */ |
||
13 | protected function setUp(): void |
||
14 | { |
||
15 | parent::setUp(); |
||
16 | |||
17 | $this->setUpEntitySchema([ |
||
18 | GH7629Entity::class, |
||
19 | ]); |
||
20 | |||
21 | $this->em->persist(new GH7629Entity()); |
||
22 | $this->em->flush(); |
||
23 | $this->em->clear(); |
||
24 | } |
||
25 | |||
26 | public function testClearScheduledForSynchronizationWhenCommitEmpty(): void |
||
34 | } |
||
35 | } |
||
50 |