the whole shebang

This commit is contained in:
2014-11-25 16:42:40 +01:00
父節點 7f74c0613e
當前提交 ab1334c0cf
共有 3686 個文件被更改,包括 496409 次插入1 次删除

查看文件

@@ -0,0 +1,20 @@
<?php
namespace Doctrine\Tests\Common\Cache;
use Doctrine\Common\Cache\WincacheCache;
class WincacheCacheTest extends CacheTest
{
public function setUp()
{
if ( ! extension_loaded('wincache') || ! function_exists('wincache_ucache_info')) {
$this->markTestSkipped('The ' . __CLASS__ .' requires the use of Wincache');
}
}
protected function _getCacheDriver()
{
return new WincacheCache();
}
}