2015-01-12 13:48:07 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2024-05-10 15:09:14 +02:00
|
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2015-01-12 13:48:07 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Test\Memcache;
|
|
|
|
|
2023-01-20 15:49:15 +01:00
|
|
|
/**
|
|
|
|
* @group Memcache
|
|
|
|
*/
|
2016-05-20 15:38:20 +02:00
|
|
|
class ArrayCacheTest extends Cache {
|
2019-11-21 16:40:38 +01:00
|
|
|
protected function setUp(): void {
|
2015-01-12 13:48:07 +01:00
|
|
|
parent::setUp();
|
|
|
|
$this->instance = new \OC\Memcache\ArrayCache('');
|
|
|
|
}
|
|
|
|
}
|