public function UrlGeneratorTest::testAbsoluteUrlWithPort80

File

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

Class

UrlGeneratorTest

Namespace

Symfony\Component\Routing\Tests\Generator

Code

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