mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-24 05:38:06 +03:00
19 lines
449 B
PHP
19 lines
449 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace ShlinkioTest\Shlink\Common;
|
|
|
|
use Psr\Container\ContainerInterface;
|
|
|
|
use function file_exists;
|
|
use function touch;
|
|
|
|
// Create an empty .env file
|
|
if (! file_exists('.env')) {
|
|
touch('.env');
|
|
}
|
|
|
|
/** @var ContainerInterface $container */
|
|
$container = require __DIR__ . '/../container.php';
|
|
$container->get(TestHelper::class)->createTestDb();
|
|
DbTest\DatabaseTestCase::setEntityManager($container->get('em'));
|