Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class GH7854Test extends OrmFunctionalTestCase |
||
13 | { |
||
14 | public function setUp() |
||
15 | { |
||
16 | parent::setUp(); |
||
17 | |||
18 | $this->_schemaTool->createSchema( |
||
19 | [ |
||
20 | $this->_em->getClassMetadata(GH7854TestEntity::class), |
||
21 | $this->_em->getClassMetadata(GH7854ValueObject::class), |
||
22 | ] |
||
23 | ); |
||
24 | } |
||
25 | |||
26 | public function testTypedPropertyContainingEmbeddable() : void |
||
36 | } |
||
37 | } |
||
58 |