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

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

24 lines
508 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\GroupMapping;
/**
2016-05-12 11:14:59 -04:00
* Class GroupMappingTest
*
* @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 GroupMappingTest extends AbstractMappingTest {
public function getMapper(\OCP\IDBConnection $dbMock) {
return new GroupMapping($dbMock);
}
}