public function RouterTest::testSetOptionWithUnsupportedOption

@expectedException \InvalidArgumentException @expectedExceptionMessage The Router does not support the "option_foo" option

File

drupal/core/vendor/symfony/routing/Symfony/Component/Routing/Tests/RouterTest.php, line 66

Class

RouterTest

Namespace

Symfony\Component\Routing\Tests

Code

public function testSetOptionWithUnsupportedOption() {
  $this->router
    ->setOption('option_foo', true);
}