function CacheTestBase::assertCacheExists
Asserts that a cache entry exists.
Parameters
$message: Message to display.
$var: The variable the cache should contain.
$cid: The cache id.
$bin: The bin the cache item was stored in.
File
- 
              core/modules/ system/ tests/ src/ Functional/ Cache/ CacheTestBase.php, line 51 
Class
- CacheTestBase
- Provides helper methods for cache tests.
Namespace
Drupal\Tests\system\Functional\CacheCode
protected function assertCacheExists($message, $var = NULL, $cid = NULL, $bin = NULL) {
  if ($bin == NULL) {
    $bin = $this->defaultBin;
  }
  if ($cid == NULL) {
    $cid = $this->defaultCid;
  }
  if ($var == NULL) {
    $var = $this->defaultValue;
  }
  $this->assertTrue($this->checkCacheExists($cid, $var, $bin), $message);
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
