function UrlTest::testFromInvalidInternalUri

Tests the fromUri() method with an invalid internal: URI.

@covers ::fromUri
@dataProvider providerFromInvalidInternalUri

File

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

Class

UrlTest
@coversDefaultClass \Drupal\Core\Url[[api-linebreak]] @group UrlTest

Namespace

Drupal\Tests\Core

Code

public function testFromInvalidInternalUri($path) {
  $this->expectException(\InvalidArgumentException::class);
  Url::fromUri('internal:' . $path);
}

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