86 lines
1.6 KiB
PHP
Executable File
86 lines
1.6 KiB
PHP
Executable File
<?php
|
|
|
|
/*
|
|
* This file is part of the Cache package.
|
|
*
|
|
* Copyright (c) Daniel González
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*
|
|
* @author Daniel González <daniel@desarrolla2.com>
|
|
*/
|
|
|
|
namespace Desarrolla2\Test\Cache\Adapter;
|
|
|
|
use Desarrolla2\Cache\Cache;
|
|
use Desarrolla2\Cache\Adapter\NotCache;
|
|
|
|
/**
|
|
* NotCacheTest
|
|
*/
|
|
class NotCacheTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
/**
|
|
* @var \Desarrolla2\Cache\Cache
|
|
*/
|
|
protected $cache;
|
|
|
|
public function setUp()
|
|
{
|
|
$this->cache = new Cache(new NotCache());
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function dataProvider()
|
|
{
|
|
return array(
|
|
array(),
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider dataProvider
|
|
*/
|
|
public function testHas()
|
|
{
|
|
$this->cache->set('key', 'value');
|
|
$this->assertFalse($this->cache->has('key'));
|
|
}
|
|
|
|
/**
|
|
* @dataProvider dataProvider
|
|
*/
|
|
public function testGet()
|
|
{
|
|
$this->cache->set('key', 'value');
|
|
$this->assertFalse($this->cache->get('key'));
|
|
}
|
|
|
|
/**
|
|
* @dataProvider dataProvider
|
|
*/
|
|
public function testSet()
|
|
{
|
|
$this->assertNull($this->cache->set('key', 'value'));
|
|
}
|
|
|
|
/**
|
|
* @dataProvider dataProvider
|
|
*/
|
|
public function testDelete()
|
|
{
|
|
$this->assertNull($this->cache->delete('key'));
|
|
}
|
|
|
|
/**
|
|
* @dataProvider dataProvider
|
|
*/
|
|
public function testSetOption()
|
|
{
|
|
$this->cache->setOption('ttl', 3600);
|
|
}
|
|
}
|