You are here

public function UrlGeneratorTest::testUrlWithInvalidParameterInHostWhenParamHasADefaultValue in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 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

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