function KeyValueEntityStorageTest::testDeleteNothing
@covers ::delete
      
    
@covers ::doDelete
      
    
File
- 
              core/
tests/ Drupal/ Tests/ Core/ Entity/ KeyValueStore/ KeyValueEntityStorageTest.php, line 587  
Class
- KeyValueEntityStorageTest
 - @coversDefaultClass \Drupal\Core\Entity\KeyValueStore\KeyValueEntityStorage[[api-linebreak]] @group Entity
 
Namespace
Drupal\Tests\Core\Entity\KeyValueStoreCode
public function testDeleteNothing() {
  $this->setUpKeyValueEntityStorage();
  $this->moduleHandler
    ->expects($this->never())
    ->method($this->anything());
  $this->keyValueStore
    ->expects($this->never())
    ->method('delete');
  $this->keyValueStore
    ->expects($this->never())
    ->method('deleteMultiple');
  $this->entityStorage
    ->delete([]);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.