public function RouterTest::testGetOptionWithUnsupportedOption

@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 75

Class

RouterTest

Namespace

Symfony\Component\Routing\Tests

Code

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