diff options
Diffstat (limited to 'apps/user_ldap/tests/Mapping/GroupMappingTest.php')
-rw-r--r-- | apps/user_ldap/tests/Mapping/GroupMappingTest.php | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/apps/user_ldap/tests/Mapping/GroupMappingTest.php b/apps/user_ldap/tests/Mapping/GroupMappingTest.php new file mode 100644 index 00000000000..5729058d10e --- /dev/null +++ b/apps/user_ldap/tests/Mapping/GroupMappingTest.php @@ -0,0 +1,25 @@ +<?php + +declare(strict_types=1); +/** + * 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\GroupMapping; +use OCP\IDBConnection; + +/** + * Class GroupMappingTest + * + * @group DB + * + * @package OCA\User_LDAP\Tests\Mapping + */ +class GroupMappingTest extends AbstractMappingTestCase { + public function getMapper(IDBConnection $dbMock) { + return new GroupMapping($dbMock); + } +} |