public function UrlGeneratorTest::testUrlWithExtraParametersFromGlobals in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/routing/Tests/Generator/UrlGeneratorTest.php \Symfony\Component\Routing\Tests\Generator\UrlGeneratorTest::testUrlWithExtraParametersFromGlobals()
File
- vendor/
symfony/ routing/ Tests/ Generator/ UrlGeneratorTest.php, line 128
Class
Namespace
Symfony\Component\Routing\Tests\GeneratorCode
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);
}