public function UrlGeneratorTest::testRelativeUrlWithNullParameterButNotOptional 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::testRelativeUrlWithNullParameterButNotOptional()
@expectedException \Symfony\Component\Routing\Exception\InvalidParameterException
File
- vendor/
symfony/ routing/ Tests/ Generator/ UrlGeneratorTest.php, line 81
Class
Namespace
Symfony\Component\Routing\Tests\GeneratorCode
public function testRelativeUrlWithNullParameterButNotOptional() {
$routes = $this
->getRoutes('test', new Route('/testing/{foo}/bar', array(
'foo' => null,
)));
// This must raise an exception because the default requirement for "foo" is "[^/]+" which is not met with these params.
// Generating path "/testing//bar" would be wrong as matching this route would fail.
$this
->getGenerator($routes)
->generate('test', array(), false);
}