Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
18 | public function testTaskGeneration() |
||
19 | { |
||
20 | $result = $this->taskGenTask('Symfony\Component\Filesystem\Filesystem', 'FilesystemStack')->run(); |
||
21 | $this->assertTrue($result->wasSuccessful(), $result->getMessage()); |
||
22 | $this->assertContains( |
||
23 | 'protected function _chgrp($files, $group, $recursive = false)', |
||
24 | $result->getMessage()); |
||
25 | } |
||
26 | |||
28 |