server/tests/bootstrap.php

29 lines
698 B
PHP
Raw Permalink Normal View History

2012-10-03 19:06:01 +00:00
<?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';
2012-10-03 19:06:01 +00:00
2016-05-19 13:49:27 +00:00
\OC::$composerAutoloader->addPsr4('Test\\', OC::$SERVERROOT . '/tests/lib/', true);
\OC::$composerAutoloader->addPsr4('Tests\\', OC::$SERVERROOT . '/tests/', true);
2015-08-18 13:35:02 +00:00
// load all enabled apps
\OC_App::loadApps();
2014-07-17 09:46:57 +00:00
2012-10-12 13:44:48 +00:00
OC_Hook::clear();
set_include_path(
get_include_path() . PATH_SEPARATOR
. '/usr/share/php' . PATH_SEPARATOR
. __DIR__ . '/..'
);