public function EntityUnitTest::testDelete 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::testDelete()
@covers ::delete
File
- core/
tests/ Drupal/ Tests/ Core/ Entity/ EntityUnitTest.php, line 365 - Contains \Drupal\Tests\Core\Entity\EntityUnitTest.
Class
- EntityUnitTest
- @coversDefaultClass \Drupal\Core\Entity\Entity @group Entity @group Access
Namespace
Drupal\Tests\Core\EntityCode
public function testDelete() {
$this->entity->id = $this
->randomMachineName();
$storage = $this
->getMock('\\Drupal\\Core\\Entity\\EntityStorageInterface');
// Testing the argument of the delete() method consumes too much memory.
$storage
->expects($this
->once())
->method('delete');
$this->entityManager
->expects($this
->once())
->method('getStorage')
->with($this->entityTypeId)
->will($this
->returnValue($storage));
$this->entity
->delete();
}