Total Complexity | 2 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
7 | class GH7512Test extends OrmFunctionalTestCase |
||
8 | { |
||
9 | protected function setUp(): void |
||
10 | { |
||
11 | parent::setUp(); |
||
12 | |||
13 | $this->setUpEntitySchema([ |
||
14 | GH7512EntityA::class, |
||
15 | GH7512EntityB::class, |
||
16 | GH7512EntityC::class |
||
17 | ]); |
||
18 | |||
19 | $this->_em->persist(new GH7512EntityA()); |
||
20 | $this->_em->persist(new GH7512EntityC()); |
||
21 | $this->_em->flush(); |
||
22 | $this->_em->clear(); |
||
23 | } |
||
24 | |||
25 | public function testFindEntityByAssociationPropertyJoinedChildWithClearMetadata(): void |
||
33 | } |
||
34 | } |
||
84 |