You are here

public function UrlGeneratorTest::testUrlWithInvalidParameterInHostInNonStrictMode 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::testUrlWithInvalidParameterInHostInNonStrictMode()

File

vendor/symfony/routing/Tests/Generator/UrlGeneratorTest.php, line 444

Class

UrlGeneratorTest

Namespace

Symfony\Component\Routing\Tests\Generator

Code

public function testUrlWithInvalidParameterInHostInNonStrictMode() {
  $routes = $this
    ->getRoutes('test', new Route('/', array(), array(
    'foo' => 'bar',
  ), array(), '{foo}.example.com'));
  $generator = $this
    ->getGenerator($routes);
  $generator
    ->setStrictRequirements(false);
  $this
    ->assertNull($generator
    ->generate('test', array(
    'foo' => 'baz',
  ), false));
}