function CacheCollectorTest::testDelete
Same name in other branches
- 9 core/tests/Drupal/Tests/Core/Cache/CacheCollectorTest.php \Drupal\Tests\Core\Cache\CacheCollectorTest::testDelete()
- 8.9.x core/tests/Drupal/Tests/Core/Cache/CacheCollectorTest.php \Drupal\Tests\Core\Cache\CacheCollectorTest::testDelete()
- 10 core/tests/Drupal/Tests/Core/Cache/CacheCollectorTest.php \Drupal\Tests\Core\Cache\CacheCollectorTest::testDelete()
Tests setting and deleting values.
File
-
core/
tests/ Drupal/ Tests/ Core/ Cache/ CacheCollectorTest.php, line 135
Class
- CacheCollectorTest
- @coversDefaultClass \Drupal\Core\Cache\CacheCollector @group Cache
Namespace
Drupal\Tests\Core\CacheCode
public function testDelete() : void {
$key = $this->randomMachineName();
$value = $this->randomMachineName();
$this->assertNull($this->collector
->get($key));
$this->collector
->set($key, $value);
$this->assertTrue($this->collector
->has($key));
$this->assertEquals($value, $this->collector
->get($key));
$this->cacheBackend
->expects($this->once())
->method('invalidate')
->with($this->cid);
$this->collector
->delete($key);
$this->assertFalse($this->collector
->has($key));
$this->assertEquals(NULL, $this->collector
->get($key));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.