Dummy.php 347 B

123456789101112131415
  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-or-later
  6. */
  7. namespace Test\User;
  8. class Dummy extends Backend {
  9. protected function setUp(): void {
  10. parent::setUp();
  11. $this->backend = new \Test\Util\User\Dummy();
  12. }
  13. }