passman/tests/bootstrap.php

28 lines
841 B
PHP
Raw Normal View History

2016-09-09 23:36:35 +08:00
<?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
*/
2017-05-08 00:21:11 +08:00
2017-07-01 22:08:44 +08:00
require_once __DIR__ . '/../../../tests/bootstrap.php';
2017-05-08 00:21:11 +08:00
2016-10-08 22:30:30 +08:00
require_once __DIR__ . '/../appinfo/autoload.php';
2017-05-08 00:21:11 +08:00
require_once __DIR__ . '/db/DatabaseHelperTest.php';
2016-10-08 22:30:30 +08:00
// 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();