2012-04-12 19:58:53 -04:00
|
|
|
<?php
|
|
|
|
|
/**
|
2024-05-10 09:09:14 -04:00
|
|
|
* SPDX-FileCopyrightText: 2019-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2020-04-08 16:24:54 -04:00
|
|
|
*/
|
2012-04-12 19:58:53 -04:00
|
|
|
|
2016-05-19 02:44:41 -04:00
|
|
|
namespace Test\Group;
|
|
|
|
|
|
2015-11-02 19:52:41 -05:00
|
|
|
/**
|
2016-05-19 02:44:41 -04:00
|
|
|
* Class Dummy
|
2015-11-02 19:52:41 -05:00
|
|
|
*
|
|
|
|
|
* @group DB
|
|
|
|
|
*/
|
2016-05-19 02:44:41 -04:00
|
|
|
class Dummy extends Backend {
|
2019-11-21 10:40:38 -05:00
|
|
|
protected function setUp(): void {
|
2014-11-05 06:21:02 -05:00
|
|
|
parent::setUp();
|
2020-10-05 09:12:57 -04:00
|
|
|
$this->backend = new \Test\Util\Group\Dummy();
|
2012-04-12 19:58:53 -04:00
|
|
|
}
|
|
|
|
|
}
|