You are here

function ApcCacheSavingCase::testNoEmptyCids in APC - Alternative PHP Cache 7

Test no empty cids are written in cache table.

File

tests/apc.test, line 176

Class

ApcCacheSavingCase

Code

function testNoEmptyCids() {
  $this
    ->drupalGet('user/register');
  $this
    ->assertFalse(cache_get(''), t('No cache entry is written with an empty cid.'));
}