public function InputArgumentTest::testConstructor in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/console/Tests/Input/InputArgumentTest.php \Symfony\Component\Console\Tests\Input\InputArgumentTest::testConstructor()
File
- vendor/
symfony/ console/ Tests/ Input/ InputArgumentTest.php, line 18
Class
Namespace
Symfony\Component\Console\Tests\InputCode
public function testConstructor() {
$argument = new InputArgument('foo');
$this
->assertEquals('foo', $argument
->getName(), '__construct() takes a name as its first argument');
}