2015-11-04 09:43:27 -05:00
|
|
|
<?php
|
2024-05-28 06:34:11 -04:00
|
|
|
|
2025-07-10 04:25:52 -04:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
2016-01-12 09:02:16 -05:00
|
|
|
/**
|
2024-05-28 06:34:11 -04:00
|
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
2016-01-12 09:02:16 -05:00
|
|
|
*/
|
2025-07-10 04:25:52 -04:00
|
|
|
|
|
|
|
|
use OCP\App\IAppManager;
|
|
|
|
|
use OCP\Server;
|
|
|
|
|
|
2015-11-19 06:36:00 -05:00
|
|
|
if (!defined('PHPUNIT_RUN')) {
|
|
|
|
|
define('PHPUNIT_RUN', 1);
|
|
|
|
|
}
|
2015-11-04 09:43:27 -05:00
|
|
|
|
|
|
|
|
require_once __DIR__ . '/../../../../lib/base.php';
|
2025-07-10 04:25:52 -04:00
|
|
|
require_once __DIR__ . '/../../../../tests/autoload.php';
|
2015-11-04 09:43:27 -05:00
|
|
|
|
2025-07-10 04:25:52 -04:00
|
|
|
Server::get(IAppManager::class)->loadApp('dav');
|