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