function CacheCollectorTest::testSetAndGet
Tests setting and getting values when the cache is empty.
File
- 
              core/tests/ Drupal/ Tests/ Core/ Cache/ CacheCollectorTest.php, line 80 
Class
- CacheCollectorTest
- @coversDefaultClass \Drupal\Core\Cache\CacheCollector[[api-linebreak]] @group Cache
Namespace
Drupal\Tests\Core\CacheCode
public function testSetAndGet() : 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));
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
