@expectedException \Symfony\Component\Routing\Exception\InvalidParameterException
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);
}