You are here

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

Removes the index added in addEntityIndex().

1 call to EntityDefinitionTestTrait::removeEntityIndex()
EntityDefinitionUpdateTest::testEntityIndexCreateDeleteWithoutData in core/tests/Drupal/KernelTests/Core/Entity/EntityDefinitionUpdateTest.php
Tests creating and deleting a multi-field index when there are no existing entities.

File

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

Class

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

Namespace

Drupal\Tests\system\Functional\Entity\Traits

Code

protected function removeEntityIndex() {
  $this->state
    ->delete('entity_test_update.additional_entity_indexes');
}