0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-05-19 04:32:04 +00:00
nextcloud_server/tests/lib/User/Dummy.php

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

16 lines
347 B
PHP
Raw Permalink Normal View History

2013-05-28 23:46:57 +02:00
<?php
/**
* SPDX-FileCopyrightText: 2019-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
2013-05-28 23:46:57 +02:00
2016-05-19 09:17:54 +02:00
namespace Test\User;
class Dummy extends Backend {
protected function setUp(): void {
parent::setUp();
$this->backend = new \Test\Util\User\Dummy();
2013-05-28 23:46:57 +02:00
}
}