Total Complexity | 3 |
Total Lines | 39 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class ControllerTestCase extends DITestCase |
||
10 | { |
||
11 | /** |
||
12 | * @var \Anax\Commons\ContainerInjectableInterface $controller Anax Controller class |
||
13 | * @var string $className Controller class name |
||
14 | */ |
||
15 | protected $controller; |
||
16 | protected $className; |
||
17 | |||
18 | |||
19 | /** |
||
20 | * Setup for every test case |
||
21 | * |
||
22 | * @return void |
||
23 | */ |
||
24 | public function setUp() : void |
||
36 | } |
||
37 | |||
38 | |||
39 | /** |
||
40 | * Teardown for every test case |
||
41 | * |
||
42 | * @return void |
||
43 | */ |
||
44 | public function tearDown() : void |
||
50 |