GroupMappingTest.php 526 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2019-2024 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
  5. * SPDX-License-Identifier: AGPL-3.0-only
  6. */
  7. namespace OCA\User_LDAP\Tests\Mapping;
  8. use OCA\User_LDAP\Mapping\GroupMapping;
  9. use OCP\IDBConnection;
  10. /**
  11. * Class GroupMappingTest
  12. *
  13. * @group DB
  14. *
  15. * @package OCA\User_LDAP\Tests\Mapping
  16. */
  17. class GroupMappingTest extends AbstractMappingTest {
  18. public function getMapper(IDBConnection $dbMock) {
  19. return new GroupMapping($dbMock);
  20. }
  21. }