| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 8 | 
| Code Lines | 7 | 
| 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 | $this->assertEquals(  | 
            ||
| 23 | ['remote', 'add', 'origin', '[email protected]:LukeCarrier/moodle-componentmgr.git'],  | 
            ||
| 
                                                                                                    
                        
                         | 
                |||
| 24 | $command->getCommandLine());  | 
            ||
| 25 | }  | 
            ||
| 26 | }  | 
            ||
| 27 | 
Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.