2020-06-02 06:48:37 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
|
|
/**
|
2024-05-29 05:32:54 -04:00
|
|
|
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2020-06-02 06:48:37 -04:00
|
|
|
*/
|
2025-07-10 04:25:52 -04:00
|
|
|
|
|
|
|
|
use OCP\App\IAppManager;
|
|
|
|
|
use OCP\Server;
|
|
|
|
|
|
2020-06-02 06:48:37 -04:00
|
|
|
if (!defined('PHPUNIT_RUN')) {
|
|
|
|
|
define('PHPUNIT_RUN', 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
require_once __DIR__ . '/../../../lib/base.php';
|
2025-07-10 04:25:52 -04:00
|
|
|
require_once __DIR__ . '/../../../tests/autoload.php';
|
2020-06-02 06:48:37 -04:00
|
|
|
|
2025-07-10 04:25:52 -04:00
|
|
|
Server::get(IAppManager::class)->loadApp('user_status');
|