nextcloud/tests/bootstrap.php

22 lines
466 B
PHP
Raw Normal View History

2012-10-03 15:06:01 -04:00
<?php
define('PHPUNIT_RUN', 1);
$configDir = getenv('CONFIG_DIR');
if ($configDir) {
define('PHPUNIT_CONFIG_DIR', $configDir);
}
require_once __DIR__ . '/../lib/base.php';
2012-10-03 15:06:01 -04:00
2015-08-18 09:35:02 -04:00
\OC::$loader->addValidRoot(OC::$SERVERROOT . '/tests');
2014-07-17 05:46:57 -04:00
// load minimum set of apps
OC_App::loadApps(array('authentication'));
OC_App::loadApps(array('filesystem', 'logging'));
if (!class_exists('PHPUnit_Framework_TestCase')) {
2012-10-03 15:06:01 -04:00
require_once('PHPUnit/Autoload.php');
}
2012-10-12 09:44:48 -04:00
OC_Hook::clear();