function UrlTest::testFromValidInternalUri

Same name in other branches
  1. 9 core/tests/Drupal/Tests/Core/UrlTest.php \Drupal\Tests\Core\UrlTest::testFromValidInternalUri()
  2. 8.9.x core/tests/Drupal/Tests/Core/UrlTest.php \Drupal\Tests\Core\UrlTest::testFromValidInternalUri()
  3. 10 core/tests/Drupal/Tests/Core/UrlTest.php \Drupal\Tests\Core\UrlTest::testFromValidInternalUri()

Tests the fromUri() method with a valid internal: URI.

@covers ::fromUri @dataProvider providerFromValidInternalUri

File

core/tests/Drupal/Tests/Core/UrlTest.php, line 675

Class

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

Namespace

Drupal\Tests\Core

Code

public function testFromValidInternalUri($path) : void {
    $url = Url::fromUri('internal:' . $path);
    $this->assertInstanceOf('Drupal\\Core\\Url', $url);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.