You are here

protected function EntityDefinitionTestTrait::resetEntityType 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::resetEntityType()

Resets the entity type definition.

2 calls to EntityDefinitionTestTrait::resetEntityType()
ViewsEntitySchemaSubscriberIntegrationTest::testVariousTableUpdates in core/modules/views/src/Tests/EventSubscriber/ViewsEntitySchemaSubscriberIntegrationTest.php
Tests a bunch possible entity definition table updates.
ViewsEntitySchemaSubscriberIntegrationTest::testVariousTableUpdatesForRevisionView in core/modules/views/src/Tests/EventSubscriber/ViewsEntitySchemaSubscriberIntegrationTest.php
Tests some possible entity table updates for a revision view.

File

core/modules/system/src/Tests/Entity/EntityDefinitionTestTrait.php, line 30
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 resetEntityType() {
  $this->state
    ->set('entity_test_update.entity_type', NULL);
  $this->entityManager
    ->clearCachedDefinitions();
  $this->entityDefinitionUpdateManager
    ->applyUpdates();
}