Total Complexity | 6 |
Total Lines | 68 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
15 | class TypeHelperTest extends TestCase |
||
16 | { |
||
17 | /** |
||
18 | * @var TypeHelper |
||
19 | */ |
||
20 | private $helper; |
||
21 | |||
22 | public function setup() |
||
23 | { |
||
24 | $this->helper = new TypeHelper(); |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * @test |
||
29 | * @small |
||
30 | * @covers ::getType |
||
31 | */ |
||
32 | public function getType(): void |
||
43 | } |
||
44 | } |
||
45 | |||
46 | /** |
||
47 | * @test |
||
48 | * @small |
||
49 | * @covers ::normaliseValueToType |
||
50 | */ |
||
51 | public function normaliseValueToType(): void |
||
83 | } |
||
84 | } |
||
87 |