21 lines
378 B
PHP
21 lines
378 B
PHP
<?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);
|
|
}
|
|
} |