You are here

protected function CacheTestBase::checkCacheExists in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/system/src/Tests/Cache/CacheTestBase.php \Drupal\system\Tests\Cache\CacheTestBase::checkCacheExists()

Checks whether or not a cache entry exists.

Parameters

$cid: The cache id.

$var: The variable the cache should contain.

$bin: The bin the cache item was stored in.

Return value

TRUE on pass, FALSE on fail.

2 calls to CacheTestBase::checkCacheExists()
CacheTestBase::assertCacheExists in core/modules/system/src/Tests/Cache/CacheTestBase.php
Asserts that a cache entry exists.
ClearTest::testFlushAllCaches in core/modules/system/src/Tests/Cache/ClearTest.php
Tests drupal_flush_all_caches().

File

core/modules/system/src/Tests/Cache/CacheTestBase.php, line 33
Contains \Drupal\system\Tests\Cache\CacheTestBase.

Class

CacheTestBase
Provides helper methods for cache tests.

Namespace

Drupal\system\Tests\Cache

Code

protected function checkCacheExists($cid, $var, $bin = NULL) {
  if ($bin == NULL) {
    $bin = $this->defaultBin;
  }
  $cached = \Drupal::cache($bin)
    ->get($cid);
  return isset($cached->data) && $cached->data == $var;
}