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