public function UrlGeneratorTest::testUrlWithInvalidParameterInHost 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::testUrlWithInvalidParameterInHost()
@expectedException \Symfony\Component\Routing\Exception\InvalidParameterException
File
- vendor/
symfony/ routing/ Tests/ Generator/ UrlGeneratorTest.php, line 420
Class
Namespace
Symfony\Component\Routing\Tests\GeneratorCode
public function testUrlWithInvalidParameterInHost() {
$routes = $this
->getRoutes('test', new Route('/', array(), array(
'foo' => 'bar',
), array(), '{foo}.example.com'));
$this
->getGenerator($routes)
->generate('test', array(
'foo' => 'baz',
), false);
}