nextcloud/apps/user_ldap/tests/Mapping/UserMappingTest.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
583 B
PHP
Raw Normal View History

<?php
/**
* SPDX-FileCopyrightText: 2019-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
* SPDX-License-Identifier: AGPL-3.0-only
2015-03-26 06:44:34 -04:00
*/
2016-05-12 11:14:59 -04:00
namespace OCA\User_LDAP\Tests\Mapping;
use OCA\User_LDAP\Mapping\UserMapping;
use OCP\Support\Subscription\IAssertion;
/**
2016-05-12 11:14:59 -04:00
* Class UserMappingTest
*
* @group DB
*
2016-05-12 11:14:59 -04:00
* @package OCA\User_LDAP\Tests\Mapping
*/
2016-05-12 11:14:59 -04:00
class UserMappingTest extends AbstractMappingTest {
public function getMapper(\OCP\IDBConnection $dbMock) {
return new UserMapping($dbMock, $this->createMock(IAssertion::class));
}
}