1
0

bootstrap.php 407 B

12345678910111213141516171819
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
  5. * SPDX-License-Identifier: AGPL-3.0-or-later
  6. */
  7. if (!defined('PHPUNIT_RUN')) {
  8. define('PHPUNIT_RUN', 1);
  9. }
  10. require_once __DIR__.'/../../../lib/base.php';
  11. \OC::$composerAutoloader->addPsr4('Test\\', OC::$SERVERROOT . '/tests/lib/', true);
  12. \OC_App::loadApp('user_status');
  13. OC_Hook::clear();