You are here

public function UrlTest::testFromValidInternalUri in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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 682
Contains \Drupal\Tests\Core\UrlTest.

Class

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

Namespace

Drupal\Tests\Core

Code

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