public function UrlGeneratorTest::testGenerateForRouteWithInvalidParameterButDisabledRequirementsCheck

File

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

Class

UrlGeneratorTest

Namespace

Symfony\Component\Routing\Tests\Generator

Code

public function testGenerateForRouteWithInvalidParameterButDisabledRequirementsCheck() {
  $routes = $this
    ->getRoutes('test', new Route('/testing/{foo}', array(
    'foo' => '1',
  ), array(
    'foo' => 'd+',
  )));
  $generator = $this
    ->getGenerator($routes);
  $generator
    ->setStrictRequirements(null);
  $this
    ->assertSame('/app.php/testing/bar', $generator
    ->generate('test', array(
    'foo' => 'bar',
  )));
}