Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
22 | public function testReflectionInheritance() |
||
23 | { |
||
24 | $normalizer = new ReflectionNormalizer(); |
||
25 | |||
26 | $this->assertSame([ |
||
27 | 'property' => 'property', |
||
28 | 'parentProperty' => 'parent', |
||
29 | 'parentParentProperty' => 'parentParent', |
||
30 | ], $normalizer(new FakeClass('parentParent', 'parent', 'property'))); |
||
31 | } |
||
32 | } |
||
33 |