Total Complexity | 5 |
Total Lines | 60 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
11 | class QueuedTasksTableTest extends TestCase |
||
12 | { |
||
13 | /** |
||
14 | * Test subject |
||
15 | * |
||
16 | * @var \Queue\Model\Table\QueuedTasksTable |
||
17 | */ |
||
18 | public $QueuedTasks; |
||
19 | |||
20 | /** |
||
21 | * Fixtures |
||
22 | * |
||
23 | * @var array |
||
24 | */ |
||
25 | public $fixtures = [ |
||
26 | 'plugin.Queue.QueuedTasks' |
||
27 | ]; |
||
28 | |||
29 | /** |
||
30 | * setUp method |
||
31 | * |
||
32 | * @return void |
||
33 | */ |
||
34 | public function setUp() |
||
39 | } |
||
40 | |||
41 | /** |
||
42 | * tearDown method |
||
43 | * |
||
44 | * @return void |
||
45 | */ |
||
46 | public function tearDown() |
||
51 | } |
||
52 | |||
53 | /** |
||
54 | * Test initialize method |
||
55 | * |
||
56 | * @return void |
||
57 | */ |
||
58 | public function testInitialize() |
||
59 | { |
||
60 | $this->markTestIncomplete('Not implemented yet.'); |
||
61 | } |
||
62 | |||
63 | /** |
||
64 | * Test validationDefault method |
||
65 | * |
||
66 | * @return void |
||
67 | */ |
||
68 | public function testValidationDefault() |
||
71 | } |
||
72 | } |
||
73 |