Rajout de doctrine/orm
[zf2.biz/galerie.git] / vendor / doctrine / common / tests / Doctrine / Tests / Common / Cache / ArrayCacheTest.php
1 <?php
2
3 namespace Doctrine\Tests\Common\Cache;
4
5 use Doctrine\Common\Cache\ArrayCache;
6
7 class ArrayCacheTest extends CacheTest
8 {
9     protected function _getCacheDriver()
10     {
11         return new ArrayCache();
12     }
13
14     public function testGetStats()
15     {
16         $cache = $this->_getCacheDriver();
17         $stats = $cache->getStats();
18
19         $this->assertNull($stats);
20     }
21 }