Security update for Core, with self-updated composer
[yaffs-website] / vendor / doctrine / cache / tests / Doctrine / Tests / Common / Cache / XcacheCacheTest.php
diff --git a/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/XcacheCacheTest.php b/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/XcacheCacheTest.php
new file mode 100644 (file)
index 0000000..93deca4
--- /dev/null
@@ -0,0 +1,16 @@
+<?php
+
+namespace Doctrine\Tests\Common\Cache;
+
+use Doctrine\Common\Cache\XcacheCache;
+
+/**
+ * @requires extension xcache
+ */
+class XcacheCacheTest extends CacheTest
+{
+    protected function _getCacheDriver()
+    {
+        return new XcacheCache();
+    }
+}
\ No newline at end of file