File
- drupal/core/vendor/symfony/routing/Symfony/Component/Routing/Tests/Generator/UrlGeneratorTest.php, line 442
Class
- UrlGeneratorTest
Namespace
Symfony\Component\Routing\Tests\Generator
Code
public function testUrlWithInvalidParameterInHostInNonStrictMode() {
$routes = $this
->getRoutes('test', new Route('/', array(), array(
'foo' => 'bar',
), array(), '{foo}.example.com'));
$generator = $this
->getGenerator($routes);
$generator
->setStrictRequirements(false);
$this
->assertNull($generator
->generate('test', array(
'foo' => 'baz',
), false));
}