1 | <?php |
||
29 | class StatsShellTest extends TestCase |
||
30 | { |
||
31 | |||
32 | /** |
||
33 | * ConsoleIo mock |
||
34 | * |
||
35 | * @var \Cake\Console\ConsoleIo|\PHPUnit_Framework_MockObject_MockObject |
||
36 | */ |
||
37 | public $io; |
||
38 | |||
39 | /** |
||
40 | * Test subject |
||
41 | * |
||
42 | * @var \App\Shell\StatsShell |
||
43 | */ |
||
44 | public $Stats; |
||
45 | |||
46 | public $fixtures = array( |
||
47 | 'app.incidents' |
||
48 | ); |
||
49 | |||
50 | /** |
||
51 | * setUp method |
||
52 | * |
||
53 | * @return void |
||
54 | */ |
||
55 | public function setUp() |
||
61 | |||
62 | /** |
||
63 | * tearDown method |
||
64 | * |
||
65 | * @return void |
||
66 | */ |
||
67 | public function tearDown() |
||
73 | |||
74 | /** |
||
75 | * Test main method |
||
76 | * |
||
77 | * @return void |
||
78 | */ |
||
79 | public function testMain() |
||
107 | } |
||
108 |