public function UrlGeneratorTest::testRequiredVariableWithNoRealSeparator in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/routing/Tests/Generator/UrlGeneratorTest.php \Symfony\Component\Routing\Tests\Generator\UrlGeneratorTest::testRequiredVariableWithNoRealSeparator()
File
- vendor/
symfony/ routing/ Tests/ Generator/ UrlGeneratorTest.php, line 362
Class
Namespace
Symfony\Component\Routing\Tests\GeneratorCode
public function testRequiredVariableWithNoRealSeparator() {
$routes = $this
->getRoutes('test', new Route('/get{what}Suffix'));
$generator = $this
->getGenerator($routes);
$this
->assertSame('/app.php/getSitesSuffix', $generator
->generate('test', array(
'what' => 'Sites',
)));
}