public function UrlGeneratorTest::testAbsoluteUrlWithExtraParameters

File

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

Class

UrlGeneratorTest

Namespace

Symfony\Component\Routing\Tests\Generator

Code

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