mirror of
https://github.com/nextcloud/server.git
synced 2024-12-27 15:38:19 +00:00
1f7e2ba599
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
29 lines
698 B
PHP
29 lines
698 B
PHP
<?php
|
|
/**
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
define('PHPUNIT_RUN', 1);
|
|
|
|
$configDir = getenv('CONFIG_DIR');
|
|
if ($configDir) {
|
|
define('PHPUNIT_CONFIG_DIR', $configDir);
|
|
}
|
|
|
|
require_once __DIR__ . '/../lib/base.php';
|
|
|
|
\OC::$composerAutoloader->addPsr4('Test\\', OC::$SERVERROOT . '/tests/lib/', true);
|
|
\OC::$composerAutoloader->addPsr4('Tests\\', OC::$SERVERROOT . '/tests/', true);
|
|
|
|
// load all enabled apps
|
|
\OC_App::loadApps();
|
|
|
|
OC_Hook::clear();
|
|
|
|
set_include_path(
|
|
get_include_path() . PATH_SEPARATOR
|
|
. '/usr/share/php' . PATH_SEPARATOR
|
|
. __DIR__ . '/..'
|
|
);
|