Files
yii2/tests/unit/framework/caching/MemCachedTest.php
Alexander Makarov 7cd9123c3b Tests cleanup
- Better names
- Removed not used MySQLTestCase
- Moved base testcase for DB to db namespace
- Minor style fixes
2013-05-24 18:35:00 +04:00

29 lines
547 B
PHP

<?php
namespace yiiunit\framework\caching;
use yii\caching\MemCache;
/**
* Class for testing memcached cache backend
*/
class MemCachedTest extends CacheTestCase
{
private $_cacheInstance = null;
/**
* @return MemCache
*/
protected function getCacheInstance()
{
if (!extension_loaded("memcached")) {
$this->markTestSkipped("memcached not installed. Skipping.");
}
if ($this->_cacheInstance === null) {
$this->_cacheInstance = new MemCache(array(
'useMemcached' => true,
));
}
return $this->_cacheInstance;
}
}