remove dead file

This commit is contained in:
Tomas Votruba 2024-01-30 17:24:30 +01:00
parent d54a5a3c50
commit a8e493082a
1 changed files with 0 additions and 27 deletions

View File

@ -1,27 +0,0 @@
<?php
declare(strict_types=1);
namespace Utils\Rector\Tests\Rector;
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';
}
}