2017-10-22 11:03:35 -05:00
|
|
|
<?php
|
2019-10-05 10:26:10 -05:00
|
|
|
|
2017-10-22 11:03:35 -05:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2019-08-11 09:30:46 -05:00
|
|
|
namespace Shlinkio\Shlink\TestUtils;
|
2019-01-26 02:42:01 -06:00
|
|
|
|
2019-01-20 15:08:32 -06:00
|
|
|
use Psr\Container\ContainerInterface;
|
2019-02-26 15:56:43 -06:00
|
|
|
|
2019-01-20 15:08:32 -06:00
|
|
|
/** @var ContainerInterface $container */
|
2019-01-26 02:42:01 -06:00
|
|
|
$container = require __DIR__ . '/../container.php';
|
2022-09-08 07:10:09 -05:00
|
|
|
$container->get(Helper\TestHelper::class)->createTestDb(
|
2024-01-02 10:55:23 -06:00
|
|
|
createDbCommand: ['bin/cli', 'db:create'],
|
|
|
|
migrateDbCommand: ['bin/cli', 'db:migrate'],
|
|
|
|
dropSchemaCommand: ['bin/doctrine', 'orm:schema-tool:drop'],
|
|
|
|
runSqlCommand: ['bin/doctrine', 'dbal:run-sql'],
|
2022-09-08 07:10:09 -05:00
|
|
|
);
|
2019-01-27 03:30:38 -06:00
|
|
|
DbTest\DatabaseTestCase::setEntityManager($container->get('em'));
|