public function UnroutedUrlTest::testToString in Drupal 9
Same name and namespace in other branches
- 8 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 168
Class
- UnroutedUrlTest
- @coversDefaultClass \Drupal\Core\Url @group UrlTest
Namespace
Drupal\Tests\CoreCode
public function testToString($uri) {
$url = Url::fromUri($uri);
$this
->assertSame($uri, $url
->toString());
}