You are here

public function UnroutedUrlTest::testToString in Zircon Profile 8

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

Tests the toString() method.

@depends testFromUri @dataProvider providerFromUri

@covers ::toString

File

core/tests/Drupal/Tests/Core/UnroutedUrlTest.php, line 175
Contains \Drupal\Tests\Core\UnroutedUrlTest.

Class

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

Namespace

Drupal\Tests\Core

Code

public function testToString($uri) {
  $url = Url::fromUri($uri);
  $this
    ->assertSame($uri, $url
    ->toString());
}