1ad982a4fe
so that all methods are tested for all drivers. Removed: - Doctrine\Common\Cache\AbstractCache::count() - Doctrine\Common\Cache\AbstractCache::deleteAll() API Changes: - Doctrine\ORM\AbstractQuery::getResultCacheId() now public Bugs fixed: - Doctrine\Common\Cache\AbstractCache::deleteByPrefix() was deleting _every_ key in cache
15 lines
261 B
PHP
15 lines
261 B
PHP
<?php
|
|
|
|
namespace Doctrine\Tests\Common\Cache;
|
|
|
|
use Doctrine\Common\Cache\ArrayCache;
|
|
|
|
require_once __DIR__ . '/../../TestInit.php';
|
|
|
|
class ArrayCacheTest extends CacheTest
|
|
{
|
|
protected function _getCacheDriver()
|
|
{
|
|
return new ArrayCache();
|
|
}
|
|
} |