public function InputOptionTest::testShortcut in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/console/Tests/Input/InputOptionTest.php \Symfony\Component\Console\Tests\Input\InputOptionTest::testShortcut()
File
- vendor/
symfony/ console/ Tests/ Input/ InputOptionTest.php, line 35
Class
Namespace
Symfony\Component\Console\Tests\InputCode
public function testShortcut() {
$option = new InputOption('foo', 'f');
$this
->assertEquals('f', $option
->getShortcut(), '__construct() can take a shortcut as its second argument');
$option = new InputOption('foo', '-f|-ff|fff');
$this
->assertEquals('f|ff|fff', $option
->getShortcut(), '__construct() removes the leading - of the shortcuts');
$option = new InputOption('foo', array(
'f',
'ff',
'-fff',
));
$this
->assertEquals('f|ff|fff', $option
->getShortcut(), '__construct() removes the leading - of the shortcuts');
$option = new InputOption('foo');
$this
->assertNull($option
->getShortcut(), '__construct() makes the shortcut null by default');
}