30 lines
530 B
PHP
30 lines
530 B
PHP
<?php
|
|
|
|
|
|
namespace Friendica\Test\src\Core\Cache;
|
|
|
|
use Friendica\Factory\CacheDriverFactory;
|
|
|
|
/**
|
|
* @requires extension memcached
|
|
*/
|
|
class MemcachedCacheDriverTest extends MemoryCacheTest
|
|
{
|
|
protected function getInstance()
|
|
{
|
|
$this->configMock
|
|
->shouldReceive('get')
|
|
->with('system', 'memcached_hosts')
|
|
->andReturn([0 => 'localhost, 11211']);
|
|
|
|
$this->cache = CacheDriverFactory::create('memcached');
|
|
return $this->cache;
|
|
}
|
|
|
|
public function tearDown()
|
|
{
|
|
$this->cache->clear(false);
|
|
parent::tearDown();
|
|
}
|
|
}
|