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';
|
2019-02-03 13:01:38 +03:00
|
|
|
$config = $container->get('config');
|
2017-10-22 19:03:35 +03:00
|
|
|
|
2019-02-03 13:01:38 +03:00
|
|
|
$container->get(TestHelper::class)->createTestDb($config['entity_manager']['connection']['path']);
|
2019-01-27 12:30:38 +03:00
|
|
|
DbTest\DatabaseTestCase::setEntityManager($container->get('em'));
|