function MetadataBubblingUrlGeneratorTest::setUp
Overrides UrlGeneratorTest::setUp
File
- 
              core/tests/ Drupal/ Tests/ Core/ Render/ MetadataBubblingUrlGeneratorTest.php, line 28 
Class
- MetadataBubblingUrlGeneratorTest
- Confirm that the MetadataBubblingUrlGenerator is functioning properly.
Namespace
Drupal\Tests\Core\RenderCode
protected function setUp() : void {
  parent::setUp();
  $this->renderer = $this->createMock('\\Drupal\\Core\\Render\\RendererInterface');
  $this->renderer
    ->expects($this->any())
    ->method('hasRenderContext')
    ->willReturn(TRUE);
  $this->generator = new MetadataBubblingUrlGenerator($this->generator, $this->renderer);
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
