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