friendica/tests/src/Core/Cache/MemcachedCacheDriverTest.php

30 lines
530 B
PHP
Raw Normal View History

<?php
namespace Friendica\Test\src\Core\Cache;
2019-03-03 15:34:07 +01:00
use Friendica\Factory\CacheDriverFactory;
/**
* @requires extension memcached
*/
2018-07-07 20:35:42 +02:00
class MemcachedCacheDriverTest extends MemoryCacheTest
{
protected function getInstance()
{
2019-02-17 21:41:45 +01:00
$this->configMock
->shouldReceive('get')
2019-02-17 21:41:45 +01:00
->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();
}
}