1
0

GroupMappingTest.php 508 B

1234567891011121314151617181920212223
  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. /**
  10. * Class GroupMappingTest
  11. *
  12. * @group DB
  13. *
  14. * @package OCA\User_LDAP\Tests\Mapping
  15. */
  16. class GroupMappingTest extends AbstractMappingTest {
  17. public function getMapper(\OCP\IDBConnection $dbMock) {
  18. return new GroupMapping($dbMock);
  19. }
  20. }