You are here

protected function CacheTestBase::assertCacheExists in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/system/tests/src/Functional/Cache/CacheTestBase.php \Drupal\Tests\system\Functional\Cache\CacheTestBase::assertCacheExists()
  2. 9 core/modules/system/tests/src/Functional/Cache/CacheTestBase.php \Drupal\Tests\system\Functional\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/tests/src/Functional/Cache/CacheTestBase.php, line 51

Class

CacheTestBase
Provides helper methods for cache tests.

Namespace

Drupal\Tests\system\Functional\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);
}