public function RouterTest::testSetOptionWithSupportedOption

File

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

Class

RouterTest

Namespace

Symfony\Component\Routing\Tests

Code

public function testSetOptionWithSupportedOption() {
  $this->router
    ->setOption('cache_dir', './cache');
  $this
    ->assertSame('./cache', $this->router
    ->getOption('cache_dir'));
}