public function UrlGeneratorTest::testAbsoluteURLGeneration

Confirms that absolute URLs work with generated routes.

File

drupal/core/tests/Drupal/Tests/Core/Routing/UrlGeneratorTest.php, line 121
Contains Drupal\Tests\Core\Routing\UrlGeneratorTest.

Class

UrlGeneratorTest
Basic tests for the Route.

Namespace

Drupal\Tests\Core\Routing

Code

public function testAbsoluteURLGeneration() {
  $url = $this->generator
    ->generate('test_1', array(), TRUE);
  $this
    ->assertEquals('http://localhost/hello/world', $url);
}