mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-02 02:11:18 -06:00
15 lines
361 B
PHP
15 lines
361 B
PHP
<?php
|
|
$pathToCore = \getenv('PATH_TO_CORE');
|
|
if ($pathToCore === false) {
|
|
$pathToCore = "../core";
|
|
}
|
|
|
|
require_once $pathToCore . '/tests/acceptance/features/bootstrap/bootstrap.php';
|
|
|
|
$classLoader = new \Composer\Autoload\ClassLoader();
|
|
$classLoader->addPsr4(
|
|
"", $pathToCore . "/tests/acceptance/features/bootstrap", true
|
|
);
|
|
|
|
$classLoader->register();
|