public function ApplicationTest::testSetGetVersion in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/console/Tests/ApplicationTest.php \Symfony\Component\Console\Tests\ApplicationTest::testSetGetVersion()
File
- vendor/
symfony/ console/ Tests/ ApplicationTest.php, line 84
Class
Namespace
Symfony\Component\Console\TestsCode
public function testSetGetVersion() {
$application = new Application();
$application
->setVersion('bar');
$this
->assertEquals('bar', $application
->getVersion(), '->setVersion() sets the version of the application');
}