Total Complexity | 3 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | class RuntimeReflectionServiceTest extends TestCase |
||
16 | { |
||
17 | /** @var RuntimeReflectionService */ |
||
18 | private $reflectionService; |
||
19 | |||
20 | /** @var mixed */ |
||
21 | private string $typedNoDefaultProperty; |
||
|
|||
22 | |||
23 | /** @var mixed */ |
||
24 | private string $typedDefaultProperty = ''; |
||
25 | |||
26 | protected function setUp() : void |
||
29 | } |
||
30 | |||
31 | public function testGetTypedNoDefaultReflectionProperty() : void |
||
32 | { |
||
33 | $reflProp = $this->reflectionService->getAccessibleProperty(self::class, 'typedNoDefaultProperty'); |
||
34 | self::assertInstanceOf(TypedNoDefaultReflectionProperty::class, $reflProp); |
||
35 | } |
||
36 | |||
37 | public function testGetTypedDefaultReflectionProperty() : void |
||
42 | } |
||
43 | } |
||
44 |