1 | <?php |
||
7 | class ParameterTest extends \PHPUnit\Framework\TestCase |
||
8 | { |
||
9 | /** |
||
10 | * Test description constructor |
||
11 | * |
||
12 | * @return void |
||
13 | **/ |
||
14 | public function testConstructDescription() |
||
26 | |||
27 | /** |
||
28 | * no description given test |
||
29 | * |
||
30 | * @return void |
||
31 | **/ |
||
32 | public function testConstructWithoutDescription() |
||
38 | |||
39 | /** |
||
40 | * No default value |
||
41 | * |
||
42 | * @return void |
||
43 | **/ |
||
44 | public function testNoDefaultValue() |
||
49 | |||
50 | /** |
||
51 | * Default value |
||
52 | * |
||
53 | * @return void |
||
54 | **/ |
||
55 | public function testDefaultValue() |
||
63 | |||
64 | /** |
||
65 | * Default value `null` |
||
66 | * |
||
67 | * @return void |
||
68 | **/ |
||
69 | public function testNullValue() |
||
77 | } |
||
78 |