function UnroutedUrlTest::setUp

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/UnroutedUrlTest.php \Drupal\Tests\Core\UnroutedUrlTest::setUp()
  2. 8.9.x core/tests/Drupal/Tests/Core/UnroutedUrlTest.php \Drupal\Tests\Core\UnroutedUrlTest::setUp()
  3. 11.x core/tests/Drupal/Tests/Core/UnroutedUrlTest.php \Drupal\Tests\Core\UnroutedUrlTest::setUp()

Overrides UnitTestCase::setUp

File

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

Class

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

Namespace

Drupal\Tests\Core

Code

protected function setUp() : void {
  parent::setUp();
  $this->urlAssembler = $this->createMock('Drupal\\Core\\Utility\\UnroutedUrlAssemblerInterface');
  $this->urlAssembler
    ->expects($this->any())
    ->method('assemble')
    ->willReturnArgument(0);
  $this->router = $this->createMock('Drupal\\Tests\\Core\\Routing\\TestRouterInterface');
  $container = new ContainerBuilder();
  $container->set('router.no_access_checks', $this->router);
  $container->set('unrouted_url_assembler', $this->urlAssembler);
  \Drupal::setContainer($container);
}

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