public function UrlTest::testFromValidInternalUri in Drupal 8
Tests the fromUri() method with a valid internal: URI.
@covers ::fromUri @dataProvider providerFromValidInternalUri
File
- core/
tests/ Drupal/ Tests/ Core/ UrlTest.php, line 717 - Contains \Drupal\Tests\Core\UrlTest.
Class
- UrlTest
- @coversDefaultClass \Drupal\Core\Url @group UrlTest
Namespace
Drupal\Tests\CoreCode
public function testFromValidInternalUri($path) {
$url = Url::fromUri('internal:' . $path);
$this
->assertInstanceOf('Drupal\\Core\\Url', $url);
}