2015-01-12 07:48:07 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/**
|
2024-05-10 09:09:14 -04: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 07:48:07 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
namespace Test\Memcache;
|
|
|
|
|
|
2025-06-12 12:31:58 -04:00
|
|
|
use OC\Memcache\ArrayCache;
|
|
|
|
|
|
2025-10-20 19:52:40 -04:00
|
|
|
#[\PHPUnit\Framework\Attributes\Group('Memcache')]
|
2016-05-20 09:38:20 -04:00
|
|
|
class ArrayCacheTest extends Cache {
|
2019-11-21 10:40:38 -05:00
|
|
|
protected function setUp(): void {
|
2015-01-12 07:48:07 -05:00
|
|
|
parent::setUp();
|
2025-06-12 12:31:58 -04:00
|
|
|
$this->instance = new ArrayCache('');
|
2015-01-12 07:48:07 -05:00
|
|
|
}
|
|
|
|
|
}
|