You are here

public function UrlGeneratorTest::testRequiredVariableWithNoRealSeparator in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 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

UrlGeneratorTest

Namespace

Symfony\Component\Routing\Tests\Generator

Code

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',
  )));
}