the whole shebang

This commit is contained in:
2014-11-25 16:42:40 +01:00
父節點 7f74c0613e
當前提交 ab1334c0cf
共有 3686 個文件被更改,包括 496409 次插入1 次删除

查看文件

@@ -0,0 +1,21 @@
<?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);
}
}