Total Complexity | 2 |
Total Lines | 48 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | class TaskFinderTest extends TestCase |
||
8 | { |
||
9 | |||
10 | /** |
||
11 | * |
||
12 | * @var \Queue\Shell\QueueShell|\PHPUnit_Framework_MockObject_MockObject |
||
13 | */ |
||
14 | public $QueueShell; |
||
15 | |||
16 | /** |
||
17 | * |
||
18 | * @var \Queue\Queue\TaskFinder |
||
19 | */ |
||
20 | protected $taskFinder; |
||
21 | |||
22 | /** |
||
23 | * Fixtures to load |
||
24 | * |
||
25 | * @var array |
||
26 | */ |
||
27 | public $fixtures = [ |
||
28 | 'plugin.Queue.QueuedTasks', |
||
29 | ]; |
||
30 | |||
31 | /** |
||
32 | * Setup Defaults |
||
33 | * |
||
34 | * @return void |
||
35 | */ |
||
36 | public function setUp() |
||
39 | } |
||
40 | |||
41 | /** |
||
42 | * |
||
43 | * @return void |
||
44 | */ |
||
45 | public function testAllAppAndPluginTasks() |
||
57 |