Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
10 | public function testRunningCommand() { |
||
11 | $runner = new CommandRunner(); |
||
12 | $file = $runner->run(CommandRunner::COMMAND_SYNC, __DIR__ . "/RecFileListTestDir", "ls"); |
||
13 | $file_lists = $file->getText(); |
||
14 | $file->delete(); |
||
15 | $lines = explode("\n", $file_lists); |
||
16 | |||
17 | $this->assertEquals(true, count($lines) > 2); |
||
18 | } |
||
20 | } |