ArrayCacheTest.php 391 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
  5. * SPDX-License-Identifier: AGPL-3.0-or-later
  6. */
  7. namespace Test\Memcache;
  8. /**
  9. * @group Memcache
  10. */
  11. class ArrayCacheTest extends Cache {
  12. protected function setUp(): void {
  13. parent::setUp();
  14. $this->instance = new \OC\Memcache\ArrayCache('');
  15. }
  16. }