public function UrlTest::testToString in Drupal 8
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 389 - Contains \Drupal\Tests\Core\UrlTest.
Class
- UrlTest
- @coversDefaultClass \Drupal\Core\Url @group UrlTest
Namespace
Drupal\Tests\CoreCode
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);
}
}