Total Complexity | 3 |
Total Lines | 45 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class AddRouteUnitTest extends TestCase |
||
8 | { |
||
9 | |||
10 | /** |
||
11 | * Some action |
||
12 | * |
||
13 | * @return int |
||
14 | */ |
||
15 | public function actionRoute(): int |
||
16 | { |
||
17 | return 1; |
||
18 | } |
||
19 | |||
20 | /** |
||
21 | * Testing method addGetRoute |
||
22 | */ |
||
23 | public function testAddGetRoute(): void |
||
35 | } |
||
36 | |||
37 | /** |
||
38 | * Testing method addPostRoute |
||
39 | */ |
||
40 | public function testAddPostRoute(): void |
||
54 |