nextcloud/tests/bootstrap.php

22 lines
500 B
PHP
Raw Normal View History

2012-10-03 21:06:01 +02: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 21:06:01 +02:00
2016-05-19 15:49:27 +02:00
\OC::$composerAutoloader->addPsr4('Test\\', OC::$SERVERROOT . '/tests/lib/', true);
\OC::$composerAutoloader->addPsr4('Tests\\', OC::$SERVERROOT . '/tests/', true);
2015-08-18 15:35:02 +02:00
// load all enabled apps
\OC_App::loadApps();
2014-07-17 11:46:57 +02:00
if (!class_exists('PHPUnit_Framework_TestCase')) {
2012-10-03 21:06:01 +02:00
require_once('PHPUnit/Autoload.php');
}
2012-10-12 15:44:48 +02:00
OC_Hook::clear();