ArrayCacheTest.php in Plug 7
Namespace
Doctrine\Tests\Common\CacheFile
lib/doctrine/cache/tests/Doctrine/Tests/Common/Cache/ArrayCacheTest.phpView source
<?php
namespace Doctrine\Tests\Common\Cache;
use Doctrine\Common\Cache\ArrayCache;
class ArrayCacheTest extends CacheTest {
protected function _getCacheDriver() {
return new ArrayCache();
}
public function testGetStats() {
$cache = $this
->_getCacheDriver();
$stats = $cache
->getStats();
$this
->assertNull($stats);
}
protected function isSharedStorage() {
return false;
}
}
Classes
Name | Description |
---|---|
ArrayCacheTest |