| 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('help')); |
||
| 18 | $commandTester->execute(['command' => $command->getName()], ['decorated' => false]); |
||
| 19 | |||
| 20 | $this->assertRegExp('/displays help for a given command/', $commandTester->getDisplay()); |
||
| 21 | } |
||
| 22 | } |
||
| 23 |