Welcome to mirror list, hosted at ThFree Co, Russian Federation.

bootstrap.php « tests - github.com/nextcloud/passman.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f94088623bdf4d509ea96fde4780f4a110cc6bfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
/**
 * Nextcloud - passman
 *
 * This file is licensed under the Affero General Public License version 3 or
 * later. See the COPYING file.
 *
 * @author Sander Brand <brantje@gmail.com>
 * @copyright Sander Brand 2016
 */

$nc_require_base = getenv('SERVER_BASE_DIR');

if ($nc_require_base) {
    require_once $nc_require_base . '/tests/bootstrap.php';
}
else{
    require_once __DIR__ . '/../../../tests/bootstrap.php';
}

require_once __DIR__ . '/../appinfo/autoload.php';
require_once __DIR__ . '/db/DatabaseHelperTest.php';


// Fix for "Autoload path not allowed: .../tests/lib/testcase.php"
\OC::$loader->addValidRoot(OC::$SERVERROOT . '/tests');
// Fix for "Autoload path not allowed: .../activity/tests/testcase.php"
\OC_App::loadApp('activity');
// Fix for "Autoload path not allowed: .../files/lib/activity.php"
\OC_App::loadApp('files');
// Fix for "Autoload path not allowed: .../files_sharing/lib/activity.php"
\OC_App::loadApp('files_sharing');

OC_Hook::clear();