2012-10-03 23:06:01 +04:00
|
|
|
<?php
|
2013-02-01 01:05:06 +04:00
|
|
|
define('PHPUNIT_RUN', 1);
|
|
|
|
|
2014-03-13 16:33:09 +04:00
|
|
|
$configDir = getenv('CONFIG_DIR');
|
|
|
|
if ($configDir) {
|
|
|
|
define('PHPUNIT_CONFIG_DIR', $configDir);
|
|
|
|
}
|
|
|
|
|
|
|
|
require_once __DIR__ . '/../lib/base.php';
|
2012-10-03 23:06:01 +04:00
|
|
|
|
2016-05-19 16:49:27 +03:00
|
|
|
\OC::$composerAutoloader->addPsr4('Test\\', OC::$SERVERROOT . '/tests/lib/', true);
|
|
|
|
\OC::$composerAutoloader->addPsr4('Tests\\', OC::$SERVERROOT . '/tests/', true);
|
2015-08-18 16:35:02 +03:00
|
|
|
|
2015-09-07 18:06:53 +03:00
|
|
|
// load all enabled apps
|
|
|
|
\OC_App::loadApps();
|
2014-07-17 13:46:57 +04:00
|
|
|
|
2012-10-12 17:44:48 +04:00
|
|
|
OC_Hook::clear();
|
2017-04-07 13:06:50 +03:00
|
|
|
|
|
|
|
set_include_path(get_include_path() . PATH_SEPARATOR . '/usr/share/php');
|