public function UrlTest::testGetUriForInternalUrl in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/tests/Drupal/Tests/Core/UrlTest.php \Drupal\Tests\Core\UrlTest::testGetUriForInternalUrl()
Tests the getUri() method for internal URLs.
@depends testUrlFromRequest
@expectedException \UnexpectedValueException
@covers ::getUri
Parameters
\Drupal\Core\Url[] $urls: Array of URL objects.
File
- core/
tests/ Drupal/ Tests/ Core/ UrlTest.php, line 322 - Contains \Drupal\Tests\Core\UrlTest.
Class
- UrlTest
- @coversDefaultClass \Drupal\Core\Url @group UrlTest
Namespace
Drupal\Tests\CoreCode
public function testGetUriForInternalUrl($urls) {
foreach ($urls as $url) {
$url
->getUri();
}
}