the whole shebang
This commit is contained in:
21
vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/ArrayCacheTest.php
vendored
Normal file
21
vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/ArrayCacheTest.php
vendored
Normal file
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user