Add infrastructure and first local acceptance test

This commit is contained in:
Phil Davis
2020-07-31 20:37:45 +05:45
parent f263630192
commit 9d147b157a
10 changed files with 218 additions and 5 deletions
@@ -0,0 +1,14 @@
<?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();