mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-28 17:08:58 +03:00
36 lines
846 B
PHP
36 lines
846 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace ShlinkioTest\Shlink\Common\DbTest;
|
|
|
|
use Doctrine\ORM\EntityManagerInterface;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
abstract class DatabaseTestCase extends TestCase
|
|
{
|
|
protected const ENTITIES_TO_EMPTY = [];
|
|
|
|
/** @var EntityManagerInterface */
|
|
private static $em;
|
|
|
|
public static function setEntityManager(EntityManagerInterface $em): void
|
|
{
|
|
self::$em = $em;
|
|
}
|
|
|
|
protected function getEntityManager(): EntityManagerInterface
|
|
{
|
|
return self::$em;
|
|
}
|
|
|
|
public function tearDown()
|
|
{
|
|
foreach (static::ENTITIES_TO_EMPTY as $entityClass) {
|
|
$qb = $this->getEntityManager()->createQueryBuilder();
|
|
$qb->delete($entityClass, 'x');
|
|
$qb->getQuery()->execute();
|
|
}
|
|
|
|
$this->getEntityManager()->clear();
|
|
}
|
|
}
|