2021-06-27 11:19:26 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
if (!defined('PHPUNIT_RUN')) {
|
2021-07-13 07:43:54 +00:00
|
|
|
define('PHPUNIT_RUN', 1);
|
2021-06-27 11:19:26 +00:00
|
|
|
}
|
|
|
|
|
2021-07-13 07:43:54 +00:00
|
|
|
require_once __DIR__ . '/../../../lib/base.php';
|
2021-06-27 11:19:26 +00:00
|
|
|
|
|
|
|
// Fix for "Autoload path not allowed: .../tests/lib/testcase.php"
|
2021-07-13 07:43:54 +00:00
|
|
|
OC::$loader->addValidRoot(OC::$SERVERROOT . '/tests');
|
2021-06-27 11:19:26 +00:00
|
|
|
|
|
|
|
// Fix for "Autoload path not allowed: .../gpoddersync/tests/testcase.php"
|
2021-07-13 07:43:54 +00:00
|
|
|
OC_App::loadApp('gpoddersync');
|
2021-06-27 11:19:26 +00:00
|
|
|
|
|
|
|
OC_Hook::clear();
|