function SharedTempStoreTest::testDelete
Same name in other branches
- 8.9.x core/modules/user/tests/src/Unit/SharedTempStoreTest.php \Drupal\Tests\user\Unit\SharedTempStoreTest::testDelete()
- 8.9.x core/tests/Drupal/Tests/Core/TempStore/SharedTempStoreTest.php \Drupal\Tests\Core\TempStore\SharedTempStoreTest::testDelete()
- 10 core/tests/Drupal/Tests/Core/TempStore/SharedTempStoreTest.php \Drupal\Tests\Core\TempStore\SharedTempStoreTest::testDelete()
- 11.x core/tests/Drupal/Tests/Core/TempStore/SharedTempStoreTest.php \Drupal\Tests\Core\TempStore\SharedTempStoreTest::testDelete()
Tests the delete() method.
@covers ::delete
File
-
core/
tests/ Drupal/ Tests/ Core/ TempStore/ SharedTempStoreTest.php, line 282
Class
- SharedTempStoreTest
- @coversDefaultClass \Drupal\Core\TempStore\SharedTempStore @group TempStore
Namespace
Drupal\Tests\Core\TempStoreCode
public function testDelete() {
$this->lock
->expects($this->once())
->method('acquire')
->with('test')
->willReturn(TRUE);
$this->lock
->expects($this->never())
->method('wait');
$this->lock
->expects($this->once())
->method('release')
->with('test');
$this->keyValue
->expects($this->once())
->method('delete')
->with('test');
$this->tempStore
->delete('test');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.