function CacheCollectorTest::testGetFromCache
Same name in other branches
- 9 core/tests/Drupal/Tests/Core/Cache/CacheCollectorTest.php \Drupal\Tests\Core\Cache\CacheCollectorTest::testGetFromCache()
- 8.9.x core/tests/Drupal/Tests/Core/Cache/CacheCollectorTest.php \Drupal\Tests\Core\Cache\CacheCollectorTest::testGetFromCache()
- 10 core/tests/Drupal/Tests/Core/Cache/CacheCollectorTest.php \Drupal\Tests\Core\Cache\CacheCollectorTest::testGetFromCache()
Tests returning value from the collected cache.
File
-
core/
tests/ Drupal/ Tests/ Core/ Cache/ CacheCollectorTest.php, line 115
Class
- CacheCollectorTest
- @coversDefaultClass \Drupal\Core\Cache\CacheCollector @group Cache
Namespace
Drupal\Tests\Core\CacheCode
public function testGetFromCache() : void {
$key = $this->randomMachineName();
$value = $this->randomMachineName();
$cache = (object) [
'data' => [
$key => $value,
],
'created' => (int) $_SERVER['REQUEST_TIME'],
];
$this->cacheBackend
->expects($this->once())
->method('get')
->with($this->cid)
->willReturn($cache);
$this->assertTrue($this->collector
->has($key));
$this->assertEquals($value, $this->collector
->get($key));
$this->assertEquals(0, $this->collector
->getCacheMisses());
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.