You are here

public function UrlTest::testToString in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Core/UrlTest.php \Drupal\Tests\Core\UrlTest::testToString()

Tests the toString() method.

@depends testUrlFromRequest

@covers ::toString

Parameters

\Drupal\Core\Url[] $urls: An array of Url objects.

File

core/tests/Drupal/Tests/Core/UrlTest.php, line 379
Contains \Drupal\Tests\Core\UrlTest.

Class

UrlTest
@coversDefaultClass \Drupal\Core\Url @group UrlTest

Namespace

Drupal\Tests\Core

Code

public function testToString($urls) {
  foreach ($urls as $index => $url) {
    $path = array_pop($this->map[$index]);
    $this
      ->assertSame($path, $url
      ->toString());
    $generated_url = $url
      ->toString(TRUE);
    $this
      ->assertSame($path, $generated_url
      ->getGeneratedUrl());
    $this
      ->assertInstanceOf('\\Drupal\\Core\\Render\\BubbleableMetadata', $generated_url);
  }
}