public function UrlGeneratorTest::testRelativeUrlWithoutParameters

File

drupal/core/vendor/symfony/routing/Symfony/Component/Routing/Tests/Generator/UrlGeneratorTest.php, line 53

Class

UrlGeneratorTest

Namespace

Symfony\Component\Routing\Tests\Generator

Code

public function testRelativeUrlWithoutParameters() {
  $routes = $this
    ->getRoutes('test', new Route('/testing'));
  $url = $this
    ->getGenerator($routes)
    ->generate('test', array(), false);
  $this
    ->assertEquals('/app.php/testing', $url);
}