You are here

protected function EntityDefinitionTestTrait::addRevisionableBaseField in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/system/tests/src/Functional/Entity/Traits/EntityDefinitionTestTrait.php \Drupal\Tests\system\Functional\Entity\Traits\EntityDefinitionTestTrait::addRevisionableBaseField()
  2. 10 core/modules/system/tests/src/Functional/Entity/Traits/EntityDefinitionTestTrait.php \Drupal\Tests\system\Functional\Entity\Traits\EntityDefinitionTestTrait::addRevisionableBaseField()

Adds a new revisionable base field to the 'entity_test_update' entity type.

Parameters

string $type: (optional) The field type for the new field. Defaults to 'string'.

1 call to EntityDefinitionTestTrait::addRevisionableBaseField()
EntityDefinitionUpdateTest::testSingleActionCalls in core/tests/Drupal/KernelTests/Core/Entity/EntityDefinitionUpdateTest.php
Tests applying single updates.

File

core/modules/system/tests/src/Functional/Entity/Traits/EntityDefinitionTestTrait.php, line 270

Class

EntityDefinitionTestTrait
Provides some test methods used to update existing entity definitions.

Namespace

Drupal\Tests\system\Functional\Entity\Traits

Code

protected function addRevisionableBaseField($type = 'string') {
  $definitions['new_base_field'] = BaseFieldDefinition::create($type)
    ->setName('new_base_field')
    ->setLabel(t('A new revisionable base field'))
    ->setRevisionable(TRUE);
  $this->state
    ->set('entity_test_update.additional_base_field_definitions', $definitions);
}