1
0
mirror of synced 2024-12-15 15:46:02 +03:00
doctrine2/tests/Doctrine/Tests/Common/Cache/ArrayCacheTest.php

15 lines
261 B
PHP
Raw Normal View History

2009-07-15 02:36:09 +04:00
<?php
namespace Doctrine\Tests\Common\Cache;
use Doctrine\Common\Cache\ArrayCache;
require_once __DIR__ . '/../../TestInit.php';
class ArrayCacheTest extends CacheTest
2009-07-15 02:36:09 +04:00
{
protected function _getCacheDriver()
2009-07-15 02:36:09 +04:00
{
return new ArrayCache();
2009-07-15 02:36:09 +04:00
}
}