2017-10-22 19:03:35 +03:00
|
|
|
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
2019-01-26 11:42:01 +03:00
|
|
|
namespace ShlinkioTest\Shlink\Common;
|
|
|
|
|
2019-01-21 00:08:32 +03:00
|
|
|
use Psr\Container\ContainerInterface;
|
2019-01-26 11:42:01 +03:00
|
|
|
use function file_exists;
|
|
|
|
use function touch;
|
2017-10-22 19:03:35 +03:00
|
|
|
|
|
|
|
// Create an empty .env file
|
|
|
|
if (! file_exists('.env')) {
|
|
|
|
touch('.env');
|
|
|
|
}
|
|
|
|
|
2019-01-21 00:08:32 +03:00
|
|
|
/** @var ContainerInterface $container */
|
2019-01-26 11:42:01 +03:00
|
|
|
$container = require __DIR__ . '/../container.php';
|
2017-10-22 19:03:35 +03:00
|
|
|
|
2019-01-26 11:42:01 +03:00
|
|
|
$container->get(TestHelper::class)->createTestDb();
|
|
|
|
DbTest\DatabaseTestCase::$em = $container->get('em');
|