function SharedTempStoreTest::testDelete

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/TempStore/SharedTempStoreTest.php \Drupal\Tests\Core\TempStore\SharedTempStoreTest::testDelete()
  2. 8.9.x core/modules/user/tests/src/Unit/SharedTempStoreTest.php \Drupal\Tests\user\Unit\SharedTempStoreTest::testDelete()
  3. 8.9.x core/tests/Drupal/Tests/Core/TempStore/SharedTempStoreTest.php \Drupal\Tests\Core\TempStore\SharedTempStoreTest::testDelete()
  4. 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 280

Class

SharedTempStoreTest
@coversDefaultClass \Drupal\Core\TempStore\SharedTempStore[[api-linebreak]] @group TempStore

Namespace

Drupal\Tests\Core\TempStore

Code

public function testDelete() : void {
  $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.