rector/templates/custom-rule/utils/rector/tests/Rector/__Name__/__Name__Test.php
2024-01-25 17:18:07 +00:00

28 lines
627 B
PHP

<?php
declare(strict_types=1);
namespace Utils\Rector\Tests\Rector\__Name__;
use PHPUnit\Framework\Attributes\DataProvider;
use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class __Name__Test extends AbstractRectorTestCase
{
#[DataProvider('provideData')]
public function test(string $filePath): void
{
$this->doTestFile($filePath);
}
public static function provideData(): \Iterator
{
return self::yieldFilesFromDirectory(__DIR__ . '/Fixture');
}
public function provideConfigFilePath(): string
{
return __DIR__ . '/config/configured_rule.php';
}
}