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