function EntityUnitTest::testPostDelete

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Entity/EntityUnitTest.php \Drupal\Tests\Core\Entity\EntityUnitTest::testPostDelete()
  2. 10 core/tests/Drupal/Tests/Core/Entity/EntityUnitTest.php \Drupal\Tests\Core\Entity\EntityUnitTest::testPostDelete()
  3. 11.x core/tests/Drupal/Tests/Core/Entity/EntityUnitTest.php \Drupal\Tests\Core\Entity\EntityUnitTest::testPostDelete()

@covers ::postDelete

File

core/tests/Drupal/Tests/Core/Entity/EntityUnitTest.php, line 517

Class

EntityUnitTest
@coversDefaultClass <a href="/api/drupal/core%21lib%21Drupal%21Core%21Entity%21Entity.php/class/Entity/8.9.x" title="Defines a base entity class." class="local">\Drupal\Core\Entity\Entity</a> @group Entity @group Access

Namespace

Drupal\Tests\Core\Entity

Code

public function testPostDelete() {
    $this->cacheTagsInvalidator
        ->expects($this->once())
        ->method('invalidateTags')
        ->with([
        $this->entityTypeId . ':' . $this->values['id'],
        $this->entityTypeId . '_list',
    ]);
    $storage = $this->createMock('\\Drupal\\Core\\Entity\\EntityStorageInterface');
    $storage->expects($this->once())
        ->method('getEntityType')
        ->willReturn($this->entityType);
    $entities = [
        $this->values['id'] => $this->entity,
    ];
    $this->entity
        ->postDelete($storage, $entities);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.