function EntityUnitTest::testDelete

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

@covers ::delete

File

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

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 testDelete() {
    $this->entity->id = $this->randomMachineName();
    $storage = $this->createMock('\\Drupal\\Core\\Entity\\EntityStorageInterface');
    // Testing the argument of the delete() method consumes too much memory.
    $storage->expects($this->once())
        ->method('delete');
    $this->entityTypeManager
        ->expects($this->once())
        ->method('getStorage')
        ->with($this->entityTypeId)
        ->will($this->returnValue($storage));
    $this->entity
        ->delete();
}

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