public function UrlGeneratorTest::testUrlWithInvalidParameterInHostWhenParamHasADefaultValue

@expectedException \Symfony\Component\Routing\Exception\InvalidParameterException

File

drupal/core/vendor/symfony/routing/Symfony/Component/Routing/Tests/Generator/UrlGeneratorTest.php, line 427

Class

UrlGeneratorTest

Namespace

Symfony\Component\Routing\Tests\Generator

Code

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);
}