mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-18 01:07:37 +08:00
25 lines
468 B
PHP
25 lines
468 B
PHP
<?php
|
|
namespace yiiunit\framework\caching;
|
|
use yii\caching\FileCache;
|
|
use yiiunit\TestCase;
|
|
|
|
/**
|
|
* Class for testing file cache backend
|
|
*/
|
|
class FileCacheTest extends CacheTest
|
|
{
|
|
private $_cacheInstance = null;
|
|
|
|
/**
|
|
* @return FileCache
|
|
*/
|
|
protected function getCacheInstance()
|
|
{
|
|
if($this->_cacheInstance === null) {
|
|
$this->_cacheInstance = new FileCache(array(
|
|
'cachePath' => '@yiiunit/runtime/cache',
|
|
));
|
|
}
|
|
return $this->_cacheInstance;
|
|
}
|
|
} |