public function CommandTest::testGetProcessedHelp in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/console/Tests/Command/CommandTest.php \Symfony\Component\Console\Tests\Command\CommandTest::testGetProcessedHelp()
File
- vendor/
symfony/ console/ Tests/ Command/ CommandTest.php, line 138
Class
Namespace
Symfony\Component\Console\Tests\CommandCode
public function testGetProcessedHelp() {
$command = new \TestCommand();
$command
->setHelp('The %command.name% command does... Example: php %command.full_name%.');
$this
->assertContains('The namespace:name command does...', $command
->getProcessedHelp(), '->getProcessedHelp() replaces %command.name% correctly');
$this
->assertNotContains('%command.full_name%', $command
->getProcessedHelp(), '->getProcessedHelp() replaces %command.full_name%');
}