Skip to content
Snippets Groups Projects
  • Joas Schilling's avatar
    94ad54ec
    Move tests/ to PSR-4 (#24731) · 94ad54ec
    Joas Schilling authored
    * Move a-b to PSR-4
    
    * Move c-d to PSR-4
    
    * Move e+g to PSR-4
    
    * Move h-l to PSR-4
    
    * Move m-r to PSR-4
    
    * Move s-u to PSR-4
    
    * Move files/ to PSR-4
    
    * Move remaining tests to PSR-4
    
    * Remove Test\ from old autoloader
    94ad54ec
    History
    Move tests/ to PSR-4 (#24731)
    Joas Schilling authored
    * Move a-b to PSR-4
    
    * Move c-d to PSR-4
    
    * Move e+g to PSR-4
    
    * Move h-l to PSR-4
    
    * Move m-r to PSR-4
    
    * Move s-u to PSR-4
    
    * Move files/ to PSR-4
    
    * Move remaining tests to PSR-4
    
    * Remove Test\ from old autoloader
bootstrap.php 500 B
<?php
define('PHPUNIT_RUN', 1);

$configDir = getenv('CONFIG_DIR');
if ($configDir) {
	define('PHPUNIT_CONFIG_DIR', $configDir);
}

require_once __DIR__ . '/../lib/base.php';

\OC::$composerAutoloader->addPsr4('Test\\', OC::$SERVERROOT . '/tests/lib/', true);
\OC::$composerAutoloader->addPsr4('Tests\\', OC::$SERVERROOT . '/tests/', true);

// load all enabled apps
\OC_App::loadApps();

if (!class_exists('PHPUnit_Framework_TestCase')) {
	require_once('PHPUnit/Autoload.php');
}

OC_Hook::clear();