You are here

protected function EntityDefinitionTestTrait::removeEntityIndex in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/system/src/Tests/Entity/EntityDefinitionTestTrait.php \Drupal\system\Tests\Entity\EntityDefinitionTestTrait::removeEntityIndex()

Removes the index added in addEntityIndex().

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

File

core/modules/system/src/Tests/Entity/EntityDefinitionTestTrait.php, line 219
Contains \Drupal\system\Tests\Entity\EntityDefinitionTestTrait.

Class

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

Namespace

Drupal\system\Tests\Entity

Code

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