You are here

protected function EntityUrlTest::registerBundleInfo in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Entity/EntityUrlTest.php \Drupal\Tests\Core\Entity\EntityUrlTest::registerBundleInfo()

Registers bundle information for the mock entity type.

Parameters

array $bundle_info: The bundle information to register.

2 calls to EntityUrlTest::registerBundleInfo()
EntityUrlTest::testToUrlUriCallback in core/tests/Drupal/Tests/Core/Entity/EntityUrlTest.php
Tests the toUrl() method with a URI callback.
EntityUrlTest::testToUrlUriCallbackUndefined in core/tests/Drupal/Tests/Core/Entity/EntityUrlTest.php
Tests the toUrl() method with neither link templates nor a URI callback.

File

core/tests/Drupal/Tests/Core/Entity/EntityUrlTest.php, line 655

Class

EntityUrlTest
Tests URL handling of the \Drupal\Core\Entity\Entity class.

Namespace

Drupal\Tests\Core\Entity

Code

protected function registerBundleInfo($bundle_info) {
  $this->entityTypeBundleInfo
    ->getBundleInfo($this->entityTypeId)
    ->willReturn([
    $this->entityTypeId => $bundle_info,
  ]);
}