2017-10-22 18:03:35 +02:00
|
|
|
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
2019-01-26 09:42:01 +01:00
|
|
|
namespace ShlinkioTest\Shlink\Common;
|
|
|
|
|
2019-01-20 22:08:32 +01:00
|
|
|
use Psr\Container\ContainerInterface;
|
2019-02-26 22:56:43 +01:00
|
|
|
|
2019-01-26 09:42:01 +01:00
|
|
|
use function file_exists;
|
|
|
|
use function touch;
|
2017-10-22 18:03:35 +02:00
|
|
|
|
|
|
|
// Create an empty .env file
|
|
|
|
if (! file_exists('.env')) {
|
|
|
|
touch('.env');
|
|
|
|
}
|
|
|
|
|
2019-01-20 22:08:32 +01:00
|
|
|
/** @var ContainerInterface $container */
|
2019-01-26 09:42:01 +01:00
|
|
|
$container = require __DIR__ . '/../container.php';
|
2019-02-03 11:01:38 +01:00
|
|
|
$config = $container->get('config');
|
2017-10-22 18:03:35 +02:00
|
|
|
|
2019-02-03 11:01:38 +01:00
|
|
|
$container->get(TestHelper::class)->createTestDb($config['entity_manager']['connection']['path']);
|
2019-01-27 10:30:38 +01:00
|
|
|
DbTest\DatabaseTestCase::setEntityManager($container->get('em'));
|