nextcloud/tests/lib/Group/Dummy.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
388 B
PHP
Raw Normal View History

2012-04-12 19:58:53 -04:00
<?php
/**
* SPDX-FileCopyrightText: 2019-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
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 {
protected function setUp(): void {
parent::setUp();
$this->backend = new \Test\Util\Group\Dummy();
2012-04-12 19:58:53 -04:00
}
}