Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | public function testExecute() |
||
12 | { |
||
13 | $application = new Application(); |
||
14 | |||
15 | $command = $application->find('config:dump-documentation'); |
||
16 | $commandTester = new CommandTester($command); |
||
17 | $commandTester->execute(['command' => $command->getName()]); |
||
18 | |||
19 | $this->assertContains('Next:', $commandTester->getDisplay()); |
||
20 | } |
||
21 | } |
||
22 |