nextcloud/tests/lib/Group/Dummy.php

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

24 lines
492 B
PHP
Raw Permalink Normal View History

2012-04-12 19:58:53 -04:00
<?php
2012-04-12 19:58:53 -04:00
/**
* 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
*/
#[\PHPUnit\Framework\Attributes\Group('DB')]
2016-05-19 02:44:41 -04:00
class Dummy extends Backend {
public function __construct() {
parent::__construct(static::class);
}
protected function setUp(): void {
parent::setUp();
$this->backend = new \Test\Util\Group\Dummy();
2012-04-12 19:58:53 -04:00
}
}