You are here

public function UnroutedUrlAssemblerTest::testAssembleWithLocalUri in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/tests/Drupal/Tests/Core/Utility/UnroutedUrlAssemblerTest.php \Drupal\Tests\Core\Utility\UnroutedUrlAssemblerTest::testAssembleWithLocalUri()

@covers ::assemble @covers::buildLocalUrl

@dataProvider providerTestAssembleWithLocalUri

File

core/tests/Drupal/Tests/Core/Utility/UnroutedUrlAssemblerTest.php, line 114
Contains \Drupal\Tests\Core\Utility\UnroutedUrlAssemblerTest.

Class

UnroutedUrlAssemblerTest
@coversDefaultClass \Drupal\Core\Utility\UnroutedUrlAssembler @group Utility

Namespace

Drupal\Tests\Core\Utility

Code

public function testAssembleWithLocalUri($uri, array $options, $subdir, $expected) {
  $this
    ->setupRequestStack($subdir);
  $this
    ->assertEquals($expected, $this->unroutedUrlAssembler
    ->assemble($uri, $options));
}