mirror of
https://github.com/nextcloud/server.git
synced 2025-02-11 11:39:27 +00:00
25 lines
601 B
PHP
25 lines
601 B
PHP
<?php
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2019-2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
namespace OCA\User_LDAP\Tests\Mapping;
|
|
|
|
use OCA\User_LDAP\Mapping\UserMapping;
|
|
use OCP\IDBConnection;
|
|
use OCP\Support\Subscription\IAssertion;
|
|
|
|
/**
|
|
* Class UserMappingTest
|
|
*
|
|
* @group DB
|
|
*
|
|
* @package OCA\User_LDAP\Tests\Mapping
|
|
*/
|
|
class UserMappingTest extends AbstractMappingTest {
|
|
public function getMapper(IDBConnection $dbMock) {
|
|
return new UserMapping($dbMock, $this->createMock(IAssertion::class));
|
|
}
|
|
}
|