protected function UrlGeneratorTest::getRoutes

26 calls to UrlGeneratorTest::getRoutes()
UrlGeneratorTest::testAbsoluteSecureUrlWithNonStandardPort in drupal/core/vendor/symfony/routing/Symfony/Component/Routing/Tests/Generator/UrlGeneratorTest.php
UrlGeneratorTest::testAbsoluteSecureUrlWithPort443 in drupal/core/vendor/symfony/routing/Symfony/Component/Routing/Tests/Generator/UrlGeneratorTest.php
UrlGeneratorTest::testAbsoluteUrlWithExtraParameters in drupal/core/vendor/symfony/routing/Symfony/Component/Routing/Tests/Generator/UrlGeneratorTest.php
UrlGeneratorTest::testAbsoluteUrlWithNonStandardPort in drupal/core/vendor/symfony/routing/Symfony/Component/Routing/Tests/Generator/UrlGeneratorTest.php
UrlGeneratorTest::testAbsoluteUrlWithPort80 in drupal/core/vendor/symfony/routing/Symfony/Component/Routing/Tests/Generator/UrlGeneratorTest.php

... See full list

File

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

Class

UrlGeneratorTest

Namespace

Symfony\Component\Routing\Tests\Generator

Code

protected function getRoutes($name, Route $route) {
  $routes = new RouteCollection();
  $routes
    ->add($name, $route);
  return $routes;
}