shlink/config/test/bootstrap_db_tests.php

18 lines
544 B
PHP
Raw Normal View History

<?php
2019-10-05 10:26:10 -05:00
declare(strict_types=1);
2019-08-11 09:30:46 -05:00
namespace Shlinkio\Shlink\TestUtils;
use Psr\Container\ContainerInterface;
/** @var ContainerInterface $container */
$container = require __DIR__ . '/../container.php';
$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'],
);
2019-01-27 03:30:38 -06:00
DbTest\DatabaseTestCase::setEntityManager($container->get('em'));