mirror of
https://github.com/nextcloud/server.git
synced 2024-12-29 16:38:28 +00:00
8d8891c5bc
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
30 lines
739 B
PHP
30 lines
739 B
PHP
<?php
|
|
/**
|
|
* SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
namespace OCA\Group_LDAP\Tests\Migration;
|
|
|
|
use OCA\User_LDAP\Group_Proxy;
|
|
use OCA\User_LDAP\Mapping\GroupMapping;
|
|
use OCA\User_LDAP\Migration\UUIDFixGroup;
|
|
use OCA\User_LDAP\Tests\Migration\AbstractUUIDFixTest;
|
|
|
|
/**
|
|
* Class UUIDFixGroupTest
|
|
*
|
|
* @package OCA\Group_LDAP\Tests\Migration
|
|
* @group DB
|
|
*/
|
|
class UUIDFixGroupTest extends AbstractUUIDFixTest {
|
|
protected function setUp(): void {
|
|
$this->isUser = false;
|
|
parent::setUp();
|
|
|
|
$this->mapper = $this->createMock(GroupMapping::class);
|
|
$this->proxy = $this->createMock(Group_Proxy::class);
|
|
|
|
$this->instantiateJob(UUIDFixGroup::class);
|
|
}
|
|
}
|