You are here

public function UrlGeneratorTraitTest::testGetUrlGenerator in Drupal 8

@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 \Drupal\Core\Routing\UrlGeneratorTrait @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);
}