summaryrefslogtreecommitdiffstats
path: root/tests/lib/memcache/arraycache.php
blob: 1db673da2a890fb0a8771150572b2e3334a40643 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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('');
	}
}