1 | <?php |
||
28 | class CleanOldNotifsShellTest extends TestCase |
||
29 | { |
||
30 | |||
31 | /** |
||
32 | * ConsoleIo mock |
||
33 | * |
||
34 | * @var \Cake\Console\ConsoleIo|\PHPUnit_Framework_MockObject_MockObject |
||
35 | */ |
||
36 | public $io; |
||
37 | |||
38 | /** |
||
39 | * Test subject |
||
40 | * |
||
41 | * @var \App\Shell\CleanOldNotifsShell |
||
42 | */ |
||
43 | public $CleanOldNotifs; |
||
44 | |||
45 | public $fixtures = array( |
||
46 | 'app.notifications', |
||
47 | 'app.developers' |
||
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() |
||
101 | } |
||
102 |