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