public function UnroutedUrlAssemblerTest::testAssembleWithNeitherExternalNorDomainLocalUri in Drupal 9
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Utility/UnroutedUrlAssemblerTest.php \Drupal\Tests\Core\Utility\UnroutedUrlAssemblerTest::testAssembleWithNeitherExternalNorDomainLocalUri()
@covers ::assemble
File
- core/
tests/ Drupal/ Tests/ Core/ Utility/ UnroutedUrlAssemblerTest.php, line 60
Class
- UnroutedUrlAssemblerTest
- @coversDefaultClass \Drupal\Core\Utility\UnroutedUrlAssembler @group Utility
Namespace
Drupal\Tests\Core\UtilityCode
public function testAssembleWithNeitherExternalNorDomainLocalUri() {
$this
->expectException(\InvalidArgumentException::class);
$this->unroutedUrlAssembler
->assemble('wrong-url');
}