public function UrlGeneratorTest::testUrlWithInvalidParameterInHostInNonStrictMode 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::testUrlWithInvalidParameterInHostInNonStrictMode()
File
- vendor/
symfony/ routing/ Tests/ Generator/ UrlGeneratorTest.php, line 444
Class
Namespace
Symfony\Component\Routing\Tests\GeneratorCode
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));
}