chore: enable app for unit tests

pull/186/head
sualko 2021-12-08 13:32:21 +01:00
parent 7de8330d60
commit 6ff3ab130b
1 changed files with 12 additions and 2 deletions

View File

@ -1,10 +1,20 @@
<?php
if (!defined('PHPUNIT_RUN')) {
define('PHPUNIT_RUN', 1);
}
if (!($ncRoot = getenv('NEXTCLOUD_ROOT'))) {
$ncRoot = __DIR__ . '/../../..';
}
echo "Using ".realpath($ncRoot)." as Nextcloud root.\n\n";
require_once $ncRoot . '/lib/base.php';
require_once __DIR__ . '/../vendor/autoload.php';
\OC_App::loadApp('bbb');
if (!class_exists('\PHPUnit\Framework\TestCase')) {
require_once('PHPUnit/Autoload.php');
}
echo "Using ".realpath($ncRoot)." as Nextcloud root.\n\n";