0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-05-05 06:20:44 +00:00
nextcloud_server/apps/user_ldap/tests/Migration/UUIDFixUserTest.php
Ferdinand Thiessen 832f79ac93
chore: apply code style
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
2025-04-30 19:04:59 +02:00

29 lines
674 B
PHP

<?php
/**
* SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\User_LDAP\Tests\Migration;
use OCA\User_LDAP\Mapping\UserMapping;
use OCA\User_LDAP\Migration\UUIDFixUser;
use OCA\User_LDAP\User_Proxy;
/**
* Class UUIDFixUserTest
*
* @package OCA\User_LDAP\Tests\Migration
* @group DB
*/
class UUIDFixUserTest extends AbstractUUIDFixTest {
protected function setUp(): void {
$this->isUser = true;
parent::setUp();
$this->mapper = $this->createMock(UserMapping::class);
$this->proxy = $this->createMock(User_Proxy::class);
$this->instantiateJob(UUIDFixUser::class);
}
}