You are here

protected function CacheTestBase::assertCacheExists in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/system/src/Tests/Cache/CacheTestBase.php \Drupal\system\Tests\Cache\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/src/Tests/Cache/CacheTestBase.php, line 55
Contains \Drupal\system\Tests\Cache\CacheTestBase.

Class

CacheTestBase
Provides helper methods for cache tests.

Namespace

Drupal\system\Tests\Cache

Code

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);
}