2016-10-19 09:57:06 -04:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
/**
|
|
|
|
* Banker
|
|
|
|
*
|
|
|
|
* A Caching library implementing psr/cache
|
|
|
|
*
|
|
|
|
* PHP version 7.0
|
|
|
|
*
|
|
|
|
* @package Banker
|
|
|
|
* @author Timothy J. Warren <tim@timshomepage.net>
|
|
|
|
* @copyright 2016 Timothy J. Warren
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
|
|
|
* @version 1.0.0
|
|
|
|
* @link https://git.timshomepage.net/timw4mail/banker
|
|
|
|
*/
|
2016-09-05 16:43:37 -04:00
|
|
|
|
|
|
|
namespace Aviat\Banker\Tests\Driver;
|
|
|
|
|
|
|
|
use Aviat\Banker\Driver\MemcacheDriver;
|
2017-03-01 09:34:06 -05:00
|
|
|
use Aviat\Banker\Exception\CacheException;
|
2016-09-05 16:43:37 -04:00
|
|
|
|
|
|
|
class MemcacheDriverTest extends DriverTestBase {
|
|
|
|
|
|
|
|
public function setup()
|
|
|
|
{
|
2017-03-01 09:34:06 -05:00
|
|
|
try
|
|
|
|
{
|
|
|
|
$this->driver = new MemcacheDriver([
|
|
|
|
'host' => 'localhost',
|
|
|
|
'port' => '11211',
|
|
|
|
'persistent' => false,
|
|
|
|
]);
|
|
|
|
$this->driver->flush();
|
|
|
|
}
|
|
|
|
catch (CacheException $e)
|
|
|
|
{
|
|
|
|
$this->markTestSkipped();
|
|
|
|
}
|
2016-09-05 16:43:37 -04:00
|
|
|
}
|
2016-09-06 11:43:25 -04:00
|
|
|
}
|