mirror of
https://github.com/deployphp/deployer.git
synced 2025-02-22 16:27:39 +01:00
Added a new class ConsoleApplicationTester, which during E2E tests will create a separate isolated process for the Deployer to run in. This class exposes methods for interacting with stdin and to grab stdout, stderr and status code of finished process.
15 lines
369 B
PHP
15 lines
369 B
PHP
<?php
|
|
$file = __DIR__ . '/../../vendor/autoload.php';
|
|
|
|
if (file_exists($file)) {
|
|
require_once $file;
|
|
} else {
|
|
die(
|
|
'You need to set up the project dependencies using the following commands:' . PHP_EOL .
|
|
'composer install' . PHP_EOL
|
|
);
|
|
}
|
|
|
|
require_once __DIR__ . '/ConsoleApplicationTester.php';
|
|
require_once __DIR__ . '/AbstractE2ETest.php';
|