summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2015-01-12 13:48:07 +0100
committerJoas Schilling <nickvergessen@gmx.de>2015-02-16 14:55:50 +0100
commit8848b5f067f9b81f68508d2d739f0f951575e5e3 (patch)
treec055fa543378c999dd2f1f7496e784d258b6b293 /tests
parent0d8b3afc32f15b1582bbf555796b9d112a91a4ef (diff)
downloadnextcloud-server-8848b5f067f9b81f68508d2d739f0f951575e5e3.tar.gz
nextcloud-server-8848b5f067f9b81f68508d2d739f0f951575e5e3.zip
Add an array implementation of cache and use it if we are not debugging
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/memcache/arraycache.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/lib/memcache/arraycache.php b/tests/lib/memcache/arraycache.php
new file mode 100644
index 00000000000..1db673da2a8
--- /dev/null
+++ b/tests/lib/memcache/arraycache.php
@@ -0,0 +1,17 @@
+<?php
+
+/**
+ * Copyright (c) 2015 Joas Schilling <nickvergessen@owncloud.com>
+ * This file is licensed under the Affero General Public License version 3 or
+ * later.
+ * See the COPYING-README file.
+ */
+
+namespace Test\Memcache;
+
+class ArrayCache extends Cache {
+ protected function setUp() {
+ parent::setUp();
+ $this->instance = new \OC\Memcache\ArrayCache('');
+ }
+}