protected function EntityUrlTest::registerBundleInfo in Drupal 10
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Entity/EntityUrlTest.php \Drupal\Tests\Core\Entity\EntityUrlTest::registerBundleInfo()
- 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 500
Class
- EntityUrlTest
- Tests URL handling of the \Drupal\Core\Entity\EntityBase class.
Namespace
Drupal\Tests\Core\EntityCode
protected function registerBundleInfo($bundle_info) {
$this->entityTypeBundleInfo
->getBundleInfo($this->entityTypeId)
->willReturn([
$this->entityTypeId => $bundle_info,
]);
}