nextcloud/apps/files_versions/tests/Command/ExpireTest.php
Ferdinand Thiessen d6d6747a73 refactor: apply rector rules for PHPUnit 10
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
2025-10-27 21:56:04 +01:00

28 lines
638 B
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
* SPDX-License-Identifier: AGPL-3.0-only
*/
namespace OCA\Files_Versions\Tests\Command;
use OCA\Files_Versions\Command\Expire;
use Test\TestCase;
/**
* Class ExpireTest
*
*
* @package OCA\Files_Versions\Tests\Command
*/
#[\PHPUnit\Framework\Attributes\Group('DB')]
class ExpireTest extends TestCase {
public function testExpireNonExistingUser(): void {
$command = new Expire($this->getUniqueID('test'), '');
$command->handle();
$this->addToAssertionCount(1);
}
}