2017-10-22 18:03:35 +02:00
|
|
|
<?php
|
2019-10-05 17:26:10 +02:00
|
|
|
|
2017-10-22 18:03:35 +02:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2019-08-11 16:30:46 +02:00
|
|
|
namespace Shlinkio\Shlink\TestUtils;
|
2019-01-26 09:42:01 +01:00
|
|
|
|
2019-01-20 22:08:32 +01:00
|
|
|
use Psr\Container\ContainerInterface;
|
2019-02-26 22:56:43 +01:00
|
|
|
|
2019-01-20 22:08:32 +01:00
|
|
|
/** @var ContainerInterface $container */
|
2019-01-26 09:42:01 +01:00
|
|
|
$container = require __DIR__ . '/../container.php';
|
2022-09-08 14:10:09 +02:00
|
|
|
$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'],
|
|
|
|
);
|
2019-01-27 10:30:38 +01:00
|
|
|
DbTest\DatabaseTestCase::setEntityManager($container->get('em'));
|