mirror of
https://github.com/nextcloud/richdocuments.git
synced 2025-12-18 05:20:43 +01:00
17 lines
441 B
PHP
17 lines
441 B
PHP
<?php
|
|
/**
|
|
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-FileCopyrightText: 2014-2015 ownCloud, Inc.
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
if (!defined('PHPUNIT_RUN')) {
|
|
define('PHPUNIT_RUN', 1);
|
|
}
|
|
|
|
require_once __DIR__.'/../../../lib/base.php';
|
|
|
|
if (!class_exists('\PHPUnit\Framework\TestCase')) {
|
|
require_once('PHPUnit/Autoload.php');
|
|
}
|
|
\OC_App::loadApp('richdocuments');
|
|
OC_Hook::clear();
|