2017-01-17 11:21:07 -05:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
/**
|
|
|
|
* Banker
|
|
|
|
*
|
|
|
|
* A Caching library implementing psr/cache
|
|
|
|
*
|
2019-12-10 11:02:02 -05:00
|
|
|
* PHP version 7.2
|
2017-01-17 11:21:07 -05:00
|
|
|
*
|
|
|
|
* @package Banker
|
|
|
|
* @author Timothy J. Warren <tim@timshomepage.net>
|
2019-12-10 11:02:02 -05:00
|
|
|
* @copyright 2016 - 2019 Timothy J. Warren
|
2017-01-17 11:21:07 -05:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
2019-12-10 11:02:02 -05:00
|
|
|
* @version 3.0.0
|
2017-01-17 11:21:07 -05:00
|
|
|
* @link https://git.timshomepage.net/timw4mail/banker
|
|
|
|
*/
|
|
|
|
namespace Aviat\Banker\Tests\Driver;
|
|
|
|
|
|
|
|
use Aviat\Banker\Driver\ApcuDriver;
|
|
|
|
|
|
|
|
class ApcuDriverTest extends DriverTestBase {
|
|
|
|
|
2019-12-10 11:00:46 -05:00
|
|
|
public function setup(): void
|
2017-01-17 11:21:07 -05:00
|
|
|
{
|
|
|
|
$this->driver = new ApcuDriver();
|
|
|
|
$this->driver->flush();
|
|
|
|
}
|
|
|
|
}
|