2017-10-22 18:03:35 +02:00
|
|
|
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
use ShlinkioTest\Shlink\Common\DbUnit\DatabaseTestCase;
|
|
|
|
use Symfony\Component\Process\Process;
|
|
|
|
use Zend\ServiceManager\ServiceManager;
|
|
|
|
|
|
|
|
// Create an empty .env file
|
|
|
|
if (! file_exists('.env')) {
|
|
|
|
touch('.env');
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @var ServiceManager $sm */
|
|
|
|
$sm = require __DIR__ . '/config/container.php';
|
|
|
|
|
2017-10-23 11:20:55 +02:00
|
|
|
// Create database
|
|
|
|
$process = new Process('vendor/bin/doctrine orm:schema-tool:create --no-interaction -q --test', __DIR__);
|
2017-10-22 18:03:35 +02:00
|
|
|
$process->inheritEnvironmentVariables()
|
|
|
|
->mustRun();
|
|
|
|
|
2017-10-23 11:20:55 +02:00
|
|
|
DatabaseTestCase::$em = $sm->get('em');
|