nextcloud/tests/lib/Snowflake/APCuTest.php
provokateurin 405d250aef
test: Add missing calls to the parent setUp method
Signed-off-by: provokateurin <kate@provokateurin.de>
2026-06-10 18:07:52 +02:00

26 lines
420 B
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace Test\Snowflake;
use OC\Snowflake\APCuSequence;
/**
* @package Test
*/
class APCuTest extends ISequenceBase {
private string $path;
#[\Override]
public function setUp():void {
parent::setUp();
$this->sequence = new APCuSequence();
}
}