public function UrlGeneratorTest::testUrlWithInvalidParameterEqualsDefaultValueInHost in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/routing/Tests/Generator/UrlGeneratorTest.php \Symfony\Component\Routing\Tests\Generator\UrlGeneratorTest::testUrlWithInvalidParameterEqualsDefaultValueInHost()
@expectedException \Symfony\Component\Routing\Exception\InvalidParameterException
File
- vendor/
symfony/ routing/ Tests/ Generator/ UrlGeneratorTest.php, line 438
Class
Namespace
Symfony\Component\Routing\Tests\GeneratorCode
public function testUrlWithInvalidParameterEqualsDefaultValueInHost() {
$routes = $this
->getRoutes('test', new Route('/', array(
'foo' => 'baz',
), array(
'foo' => 'bar',
), array(), '{foo}.example.com'));
$this
->getGenerator($routes)
->generate('test', array(
'foo' => 'baz',
), false);
}