public function UrlGeneratorTest::testUrlWithNullExtraParameters

File

drupal/core/vendor/symfony/routing/Symfony/Component/Routing/Tests/Generator/UrlGeneratorTest.php, line 109

Class

UrlGeneratorTest

Namespace

Symfony\Component\Routing\Tests\Generator

Code

public function testUrlWithNullExtraParameters() {
  $routes = $this
    ->getRoutes('test', new Route('/testing'));
  $url = $this
    ->getGenerator($routes)
    ->generate('test', array(
    'foo' => null,
  ), true);
  $this
    ->assertEquals('http://localhost/app.php/testing', $url);
}