You are here

public function UrlGeneratorTest::testGenerateForRouteWithInvalidOptionalParameterNonStrictWithLogger in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/routing/Tests/Generator/UrlGeneratorTest.php \Symfony\Component\Routing\Tests\Generator\UrlGeneratorTest::testGenerateForRouteWithInvalidOptionalParameterNonStrictWithLogger()

File

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

Class

UrlGeneratorTest

Namespace

Symfony\Component\Routing\Tests\Generator

Code

public function testGenerateForRouteWithInvalidOptionalParameterNonStrictWithLogger() {
  $routes = $this
    ->getRoutes('test', new Route('/testing/{foo}', array(
    'foo' => '1',
  ), array(
    'foo' => 'd+',
  )));
  $logger = $this
    ->getMock('Psr\\Log\\LoggerInterface');
  $logger
    ->expects($this
    ->once())
    ->method('error');
  $generator = $this
    ->getGenerator($routes, array(), $logger);
  $generator
    ->setStrictRequirements(false);
  $this
    ->assertNull($generator
    ->generate('test', array(
    'foo' => 'bar',
  ), true));
}