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. 10 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 <a href="/api/drupal/core%21lib%21Drupal%21Core%21Url.php/class/Url/11.x" title="Defines an object that holds information about a URL." class="local">\Drupal\Core\Url</a> @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.