function ConfigEntityStorageTest::testDeleteNothing

Same name and namespace in other branches
  1. 11.x core/tests/Drupal/Tests/Core/Config/Entity/ConfigEntityStorageTest.php \Drupal\Tests\Core\Config\Entity\ConfigEntityStorageTest::testDeleteNothing()
  2. 10 core/tests/Drupal/Tests/Core/Config/Entity/ConfigEntityStorageTest.php \Drupal\Tests\Core\Config\Entity\ConfigEntityStorageTest::testDeleteNothing()
  3. 9 core/tests/Drupal/Tests/Core/Config/Entity/ConfigEntityStorageTest.php \Drupal\Tests\Core\Config\Entity\ConfigEntityStorageTest::testDeleteNothing()
  4. 8.9.x core/tests/Drupal/Tests/Core/Config/Entity/ConfigEntityStorageTest.php \Drupal\Tests\Core\Config\Entity\ConfigEntityStorageTest::testDeleteNothing()

Tests delete nothing.

@legacy-covers ::delete @legacy-covers ::doDelete

File

core/tests/Drupal/Tests/Core/Config/Entity/ConfigEntityStorageTest.php, line 721

Class

ConfigEntityStorageTest
Tests Drupal\Core\Config\Entity\ConfigEntityStorage.

Namespace

Drupal\Tests\Core\Config\Entity

Code

public function testDeleteNothing() : void {
  $this->moduleHandler
    ->invokeAll(Argument::cetera())
    ->shouldNotBeCalled();
  $this->configFactory
    ->get(Argument::cetera())
    ->shouldNotBeCalled();
  $this->configFactory
    ->getEditable(Argument::cetera())
    ->shouldNotBeCalled();
  $this->cacheTagsInvalidator
    ->invalidateTags(Argument::cetera())
    ->shouldNotBeCalled();
  $this->entityStorage
    ->delete([]);
}

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