summaryrefslogtreecommitdiffstats
path: root/tests/lib/Memcache/ArrayCacheTest.php
blob: 3ae8c116a01b9465d6f19d1d6a9443bb230afe70 (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 ArrayCacheTest extends Cache {
	protected function setUp() {
		parent::setUp();
		$this->instance = new \OC\Memcache\ArrayCache('');
	}
}