Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
45 | public function testAllAppAndPluginTasks() |
||
46 | { |
||
47 | $this->taskFinder = new TaskFinder(); |
||
48 | |||
49 | $result = $this->taskFinder->allAppAndPluginTasks(); |
||
50 | $this->assertCount(1, $result); |
||
51 | $this->assertArraySubset([ |
||
52 | 'QueueFoo' |
||
53 | ], $result); |
||
54 | $this->assertTrue(!in_array('Foo.QueueFoo', $result)); |
||
55 | } |
||
57 |