banker/tests/Driver/ApcuDriverTest.php

28 lines
674 B
PHP
Raw Normal View History

2017-01-17 11:21:07 -05:00
<?php declare(strict_types=1);
/**
* Banker
*
* A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16)
2017-01-17 11:21:07 -05:00
*
* PHP version 7.4
2017-01-17 11:21:07 -05:00
*
* @package Banker
* @author Timothy J. Warren <tim@timshomepage.net>
* @copyright 2016 - 2020 Timothy J. Warren
2017-01-17 11:21:07 -05:00
* @license http://www.opensource.org/licenses/mit-license.html MIT License
2020-05-08 12:30:43 -04:00
* @version 3.1.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();
}
}