public function UrlGeneratorTest::testNullForOptionalParameterIsIgnored in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/routing/Tests/Generator/UrlGeneratorTest.php \Symfony\Component\Routing\Tests\Generator\UrlGeneratorTest::testNullForOptionalParameterIsIgnored()
File
- vendor/
symfony/ routing/ Tests/ Generator/ UrlGeneratorTest.php, line 291
Class
Namespace
Symfony\Component\Routing\Tests\GeneratorCode
public function testNullForOptionalParameterIsIgnored() {
$routes = $this
->getRoutes('test', new Route('/test/{default}', array(
'default' => 0,
)));
$this
->assertEquals('/app.php/test', $this
->getGenerator($routes)
->generate('test', array(
'default' => null,
)));
}