| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | public function testExecute() |
||
| 15 | { |
||
| 16 | $application = new Application(); |
||
| 17 | $commandTester = new CommandTester($command = $application->get('lookup')); |
||
| 18 | $commandTester->execute(['command' => $command->getName(), 'package' => 'jquery'], ['decorated' => false]); |
||
| 19 | |||
| 20 | $this->assertRegExp('/jquery-dist.git/', $commandTester->getDisplay()); |
||
| 21 | } |
||
| 22 | |||
| 34 |