You are here

public function UrlGeneratorTest::testNullForOptionalParameterIsIgnored in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 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

UrlGeneratorTest

Namespace

Symfony\Component\Routing\Tests\Generator

Code

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,
  )));
}