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