2009-07-14 22:36:09 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Doctrine\Tests\Common\Cache;
|
|
|
|
|
|
|
|
use Doctrine\Common\Cache\ArrayCache;
|
|
|
|
|
|
|
|
require_once __DIR__ . '/../../TestInit.php';
|
|
|
|
|
2010-01-29 01:38:37 +00:00
|
|
|
class ArrayCacheTest extends CacheTest
|
2009-07-14 22:36:09 +00:00
|
|
|
{
|
2010-01-29 01:38:37 +00:00
|
|
|
protected function _getCacheDriver()
|
2009-07-14 22:36:09 +00:00
|
|
|
{
|
2010-01-29 01:38:37 +00:00
|
|
|
return new ArrayCache();
|
2009-07-14 22:36:09 +00:00
|
|
|
}
|
|
|
|
}
|