UserMappingTest.php 601 B

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