You are here

protected function ApcCacheTestCase::assertCacheExists in APC - Alternative PHP Cache 7

Assert or 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.

2 calls to ApcCacheTestCase::assertCacheExists()
ApcCacheClearCase::testClearCid in tests/apc.test
Test clearing using a cid.
ApcCacheIsEmptyCase::testIsEmpty in tests/apc.test
Test clearing using a cid.

File

tests/apc.test, line 48

Class

ApcCacheTestCase

Code

protected function assertCacheExists($message, $var = NULL, $cid = NULL, $bin = NULL) {
  if ($bin == NULL) {
    $bin = $this->default_bin;
  }
  if ($cid == NULL) {
    $cid = $this->default_cid;
  }
  if ($var == NULL) {
    $var = $this->default_value;
  }
  $this
    ->assertTrue($this
    ->checkCacheExists($cid, $var, $bin), $message);
}