*/ namespace Desarrolla2\Test\Cache; use Desarrolla2\Cache\PhpFile as PhpFileCache; use org\bovigo\vfs\vfsStream; use org\bovigo\vfs\vfsStreamDirectory; /** * FileTest with PhpPacker */ class PhpFileTest extends AbstractCacheTest { /** * @var vfsStreamDirectory */ private $root; protected $skippedTests = [ 'testBasicUsageWithLongKey' => 'Only support keys up to 64 bytes' ]; public function createSimpleCache() { $this->root = vfsStream::setup('cache'); return new PhpFileCache(vfsStream::url('cache')); } }