mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-22 10:43:35 +01:00
37 lines
849 B
PHP
37 lines
849 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace Rector\Tests;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use Psr\Container\ContainerInterface;
|
|
use Rector\DependencyInjection\ContainerFactory;
|
|
|
|
abstract class AbstractContainerAwareTestCase extends TestCase
|
|
{
|
|
/**
|
|
* @var ContainerInterface
|
|
*/
|
|
protected $container;
|
|
|
|
/**
|
|
* @var ContainerInterface
|
|
*/
|
|
private static $cachedContainer;
|
|
|
|
/**
|
|
* Constructs a test case with the given name.
|
|
*
|
|
* @param mixed[] $data
|
|
*/
|
|
public function __construct(?string $name = null, array $data = [], string $dataName = '')
|
|
{
|
|
if (self::$cachedContainer === null) {
|
|
self::$cachedContainer = (new ContainerFactory())->create();
|
|
}
|
|
|
|
$this->container = self::$cachedContainer;
|
|
|
|
parent::__construct($name, $data, $dataName);
|
|
}
|
|
}
|