public function EntityUnitTest::testPostDelete in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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 455 - Contains \Drupal\Tests\Core\Entity\EntityUnitTest.
Class
- EntityUnitTest
- @coversDefaultClass \Drupal\Core\Entity\Entity @group Entity @group Access
Namespace
Drupal\Tests\Core\EntityCode
public function testPostDelete() {
$this->cacheTagsInvalidator
->expects($this
->once())
->method('invalidateTags')
->with(array(
$this->entityTypeId . ':' . $this->values['id'],
$this->entityTypeId . '_list',
));
$storage = $this
->getMock('\\Drupal\\Core\\Entity\\EntityStorageInterface');
$storage
->expects($this
->once())
->method('getEntityType')
->willReturn($this->entityType);
$entities = array(
$this->values['id'] => $this->entity,
);
$this->entity
->postDelete($storage, $entities);
}