protected function DateTestBase::renderTestEntity in Drupal 10
Same name and namespace in other branches
- 8 core/modules/datetime/tests/src/Functional/DateTestBase.php \Drupal\Tests\datetime\Functional\DateTestBase::renderTestEntity()
- 9 core/modules/datetime/tests/src/Functional/DateTestBase.php \Drupal\Tests\datetime\Functional\DateTestBase::renderTestEntity()
Renders an entity_test and sets the output in the internal browser.
Parameters
int $id: The entity_test ID to render.
string $view_mode: (optional) The view mode to use for rendering. Defaults to 'full'.
bool $reset: (optional) Whether to reset the entity_test controller cache. Defaults to TRUE to simplify testing.
Return value
string The rendered HTML output.
File
- core/
modules/ datetime/ tests/ src/ Functional/ DateTestBase.php, line 168
Class
- DateTestBase
- Provides a base class for testing Datetime field functionality.
Namespace
Drupal\Tests\datetime\FunctionalCode
protected function renderTestEntity($id, $view_mode = 'full', $reset = TRUE) {
if ($reset) {
$this->container
->get('entity_type.manager')
->getStorage('entity_test')
->resetCache([
$id,
]);
}
$entity = EntityTest::load($id);
$display = EntityViewDisplay::collectRenderDisplay($entity, $view_mode);
$build = $display
->build($entity);
return (string) $this->container
->get('renderer')
->renderRoot($build);
}