public function UrlGeneratorTest::testUrlWithExtraParametersFromGlobals

File

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

Class

UrlGeneratorTest

Namespace

Symfony\Component\Routing\Tests\Generator

Code

public function testUrlWithExtraParametersFromGlobals() {
  $routes = $this
    ->getRoutes('test', new Route('/testing'));
  $generator = $this
    ->getGenerator($routes);
  $context = new RequestContext('/app.php');
  $context
    ->setParameter('bar', 'bar');
  $generator
    ->setContext($context);
  $url = $generator
    ->generate('test', array(
    'foo' => 'bar',
  ));
  $this
    ->assertEquals('/app.php/testing?foo=bar', $url);
}