rector/packages/Testing/PHPUnit/AbstractTestCase.php
Tomas Votruba 7ba32aac1f Updated Rector to commit e12c73eb339a847bcd717025abf5bc43f1cd0e4c
e12c73eb33 [psr-4] Move tests to main namespace, as part of /src and /packages merge - step 2 (#5407)
2024-01-01 00:20:45 +00:00

35 lines
813 B
PHP

<?php
declare (strict_types=1);
namespace Rector\Testing\PHPUnit;
/**
* @deprecated Use AbstractLazyTestCase instead
*/
abstract class AbstractTestCase extends \Rector\Testing\PHPUnit\AbstractLazyTestCase
{
/**
* @param string[] $configFiles
*/
protected function bootFromConfigFiles(array $configFiles) : void
{
$rectorConfig = self::getContainer();
foreach ($configFiles as $configFile) {
$callable = (require $configFile);
$callable($rectorConfig);
}
}
/**
* Syntax-sugar to remove static
* @deprecated Only for BC
*
* @template T of object
* @param class-string<T> $type
* @return T
*/
protected function getService(string $type) : object
{
return $this->make($type);
}
}