2012-10-03 15:06:01 -04:00
|
|
|
<?php
|
|
|
|
|
|
2013-01-31 16:05:06 -05:00
|
|
|
|
|
|
|
|
define('PHPUNIT_RUN', 1);
|
|
|
|
|
|
2014-03-13 08:33:09 -04:00
|
|
|
$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
|
|
|
|
2014-03-13 08:33:09 -04:00
|
|
|
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();
|
2012-10-12 09:45:05 -04:00
|
|
|
OC_Log::$enabled = false;
|
2014-03-11 16:01:16 -04:00
|
|
|
OC_FileProxy::clearProxies();
|