Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
18 | public function testGetCommandLine() { |
||
19 | $command = new RemoteAddCommand(new GitRemote( |
||
20 | 'origin', |
||
21 | '[email protected]:LukeCarrier/moodle-componentmgr.git')); |
||
22 | $expect = [ |
||
23 | 'remote', |
||
24 | 'add', |
||
25 | 'origin', |
||
26 | '[email protected]:LukeCarrier/moodle-componentmgr.git', |
||
27 | ]; |
||
28 | $this->assertEquals($expect, $command->getCommandLine()); |
||
29 | } |
||
30 | } |
||
31 |