mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-22 08:56:42 -06:00
18 lines
475 B
PHP
18 lines
475 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Shlinkio\Shlink\TestUtils;
|
|
|
|
use Psr\Container\ContainerInterface;
|
|
|
|
/** @var ContainerInterface $container */
|
|
$container = require __DIR__ . '/../container.php';
|
|
$container->get(Helper\TestHelper::class)->createTestDb(
|
|
['bin/cli', 'db:create'],
|
|
['bin/cli', 'db:migrate'],
|
|
['bin/doctrine', 'orm:schema-tool:drop'],
|
|
['bin/doctrine', 'dbal:run-sql'],
|
|
);
|
|
DbTest\DatabaseTestCase::setEntityManager($container->get('em'));
|