XcacheCacheTest.php in Zircon Profile 8.0
Same filename and directory in other branches
Namespace
Doctrine\Tests\Common\CacheFile
vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/XcacheCacheTest.phpView source
<?php
namespace Doctrine\Tests\Common\Cache;
use Doctrine\Common\Cache\XcacheCache;
class XcacheCacheTest extends CacheTest {
public function setUp() {
if (!extension_loaded('xcache')) {
$this
->markTestSkipped('The ' . __CLASS__ . ' requires the use of xcache');
}
}
protected function _getCacheDriver() {
return new XcacheCache();
}
}
Classes
Name | Description |
---|---|
XcacheCacheTest |