function UrlGeneratorTraitTest::testGetUrlGenerator

@covers ::setUrlGenerator @covers ::getUrlGenerator

@expectedDeprecation Drupal\Core\Routing\UrlGeneratorTrait::setUrlGenerator() is deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. See https://www.drupal.org/node/2614344 @expectedDeprecation Drupal\Core\Routing\UrlGeneratorTrait::getUrlGenerator() is deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use the url_generator service instead. See https://www.drupal.org/node/2614344

File

core/tests/Drupal/Tests/Core/Routing/UrlGeneratorTraitTest.php, line 21

Class

UrlGeneratorTraitTest
@coversDefaultClass <a href="/api/drupal/core%21lib%21Drupal%21Core%21Routing%21UrlGeneratorTrait.php/trait/UrlGeneratorTrait/8.9.x" title="Wrapper methods for the Url Generator." class="local">\Drupal\Core\Routing\UrlGeneratorTrait</a> @group Routing @group legacy

Namespace

Drupal\Tests\Core\Routing

Code

public function testGetUrlGenerator() {
    $url_generator = $this->createMock('Drupal\\Core\\Routing\\UrlGeneratorInterface');
    $url_generator_trait_object = $this->getMockForTrait('Drupal\\Core\\Routing\\UrlGeneratorTrait');
    $url_generator_trait_object->setUrlGenerator($url_generator);
    $url_generator_method = new \ReflectionMethod($url_generator_trait_object, 'getUrlGenerator');
    $url_generator_method->setAccessible(TRUE);
    $result = $url_generator_method->invoke($url_generator_trait_object);
    $this->assertEquals($url_generator, $result);
}

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