public function UrlGeneratorTest::testRelativeUrlWithExtraParameters

File

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

Class

UrlGeneratorTest

Namespace

Symfony\Component\Routing\Tests\Generator

Code

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