You are here

public function UnroutedUrlTest::testFromInvalidUri in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/UnroutedUrlTest.php \Drupal\Tests\Core\UnroutedUrlTest::testFromInvalidUri()

Tests the fromUri() method.

@covers ::fromUri @dataProvider providerFromInvalidUri

File

core/tests/Drupal/Tests/Core/UnroutedUrlTest.php, line 105

Class

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

Namespace

Drupal\Tests\Core

Code

public function testFromInvalidUri($uri) {
  $this
    ->expectException(\InvalidArgumentException::class);
  $url = Url::fromUri($uri);
}