Dummy.php 388 B

1234567891011121314151617181920
  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\Group;
  8. /**
  9. * Class Dummy
  10. *
  11. * @group DB
  12. */
  13. class Dummy extends Backend {
  14. protected function setUp(): void {
  15. parent::setUp();
  16. $this->backend = new \Test\Util\Group\Dummy();
  17. }
  18. }