UserMappingTest.php 583 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\UserMapping;
  9. use OCP\Support\Subscription\IAssertion;
  10. /**
  11. * Class UserMappingTest
  12. *
  13. * @group DB
  14. *
  15. * @package OCA\User_LDAP\Tests\Mapping
  16. */
  17. class UserMappingTest extends AbstractMappingTest {
  18. public function getMapper(\OCP\IDBConnection $dbMock) {
  19. return new UserMapping($dbMock, $this->createMock(IAssertion::class));
  20. }
  21. }