2016-04-08 14:25:45 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
require_once('CacheDriverBase.php');
|
|
|
|
|
|
|
|
use Aviat\Ion\Cache\Driver\RedisDriver;
|
|
|
|
|
|
|
|
class CacheRedisDriverTest extends AnimeClient_TestCase {
|
|
|
|
use CacheDriverBase;
|
|
|
|
|
|
|
|
protected $driver;
|
|
|
|
|
|
|
|
public function setUp()
|
|
|
|
{
|
|
|
|
parent::setUp();
|
2016-07-18 12:59:34 -04:00
|
|
|
|
2016-07-22 17:22:00 -04:00
|
|
|
$this->driver = new RedisDriver($this->container);
|
2016-04-08 14:25:45 -04:00
|
|
|
}
|
2016-04-19 14:51:58 -04:00
|
|
|
|
|
|
|
public function tearDown()
|
|
|
|
{
|
|
|
|
parent::tearDown();
|
2016-07-18 12:59:34 -04:00
|
|
|
|
|
|
|
if ( ! is_null($this->driver))
|
|
|
|
{
|
|
|
|
$this->driver->__destruct();
|
|
|
|
}
|
|
|
|
|
2016-04-19 14:51:58 -04:00
|
|
|
}
|
2016-04-08 14:25:45 -04:00
|
|
|
}
|