banker/tests/Driver/ApcuDriverTest.php

34 lines
757 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
*
2021-11-30 11:56:15 -05:00
* PHP version 8+
2017-01-17 11:21:07 -05:00
*
* @package Banker
* @author Timothy J. Warren <tim@timshomepage.net>
2023-03-16 13:09:36 -04:00
* @copyright 2016 - 2023 Timothy J. Warren
2017-01-17 11:21:07 -05:00
* @license http://www.opensource.org/licenses/mit-license.html MIT License
2023-03-16 13:09:36 -04:00
* @version 4.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
{
2021-02-05 13:47:37 -05:00
if ( ! extension_loaded('apcu'))
{
$this->markTestSkipped();
return;
}
2017-01-17 11:21:07 -05:00
$this->driver = new ApcuDriver();
$this->driver->flush();
}
}