nc-gpxedit/tests/bootstrap.php

27 lines
656 B
PHP
Raw Normal View History

2018-01-15 12:57:41 +00:00
<?php
/**
* GpxEdit
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
*
*/
define('PHPUNIT_RUN', 1);
// ugly hack to fix issues with template code using static code
$_SERVER['REQUEST_URI'] = '/index.php/apps/gpxedit/';
$_SERVER['SCRIPT_NAME'] = '/index.php';
require_once __DIR__.'/../../../lib/base.php';
if (version_compare(implode('.', \OCP\Util::getVersion()), '8.2', '>=')) {
\OC::$loader->addValidRoot(OC::$SERVERROOT . '/tests');
\OC_App::loadApp('gpxedit');
}
2018-01-15 13:17:10 +00:00
//if(!class_exists('PHPUnit_Framework_TestCase')) {
// require_once('PHPUnit/Autoload.php');
//}
2018-01-15 12:57:41 +00:00
OC_Hook::clear();