You are here

protected function EntityDefinitionTestTrait::renameBaseTable 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::renameBaseTable()
  2. 10 core/modules/system/tests/src/Functional/Entity/Traits/EntityDefinitionTestTrait.php \Drupal\Tests\system\Functional\Entity\Traits\EntityDefinitionTestTrait::renameBaseTable()

Renames the base table to 'entity_test_update_new'.

2 calls to EntityDefinitionTestTrait::renameBaseTable()
ViewsEntitySchemaSubscriberIntegrationTest::testBaseTableRename in core/modules/views/tests/src/Kernel/EventSubscriber/ViewsEntitySchemaSubscriberIntegrationTest.php
Tests that renaming base tables adapts the views.
ViewsEntitySchemaSubscriberIntegrationTest::testViewSaveException in core/modules/views/tests/src/Kernel/EventSubscriber/ViewsEntitySchemaSubscriberIntegrationTest.php
Tests the case when a view could not be updated automatically.

File

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

Class

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

Namespace

Drupal\Tests\system\Functional\Entity\Traits

Code

protected function renameBaseTable() {
  $entity_type = clone \Drupal::entityTypeManager()
    ->getDefinition('entity_test_update');
  $entity_type
    ->set('base_table', 'entity_test_update_new');
  $this->state
    ->set('entity_test_update.entity_type', $entity_type);
}