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