naming conventions for test fixtures

This commit is contained in:
TomasVotruba 2020-02-02 18:25:05 +01:00
parent 9cf045561f
commit 447c2ead87
450 changed files with 945 additions and 910 deletions

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class ConstructorInjectionToActionInjectionRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,7 +11,7 @@ use Rector\Testing\PHPUnit\AbstractFileSystemRectorTestCase;
final class MoveEntitiesToEntityDirectoryRectorTest extends AbstractFileSystemRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $originalFile, string $expectedFileLocation, string $expectedFileContent): void
{
@ -21,7 +21,7 @@ final class MoveEntitiesToEntityDirectoryRectorTest extends AbstractFileSystemRe
$this->assertFileEquals($expectedFileContent, $expectedFileLocation);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
yield [
__DIR__ . '/Source/Controller/RandomEntity.php',

View File

@ -11,7 +11,7 @@ use Rector\Testing\PHPUnit\AbstractFileSystemRectorTestCase;
final class MoveInterfacesToContractNamespaceDirectoryRectorTest extends AbstractFileSystemRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $originalFile, string $expectedFileLocation, string $expectedFileContent): void
{
@ -21,7 +21,7 @@ final class MoveInterfacesToContractNamespaceDirectoryRectorTest extends Abstrac
$this->assertFileEquals($expectedFileContent, $expectedFileLocation);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
yield [
__DIR__ . '/Source/Entity/RandomInterface.php',

View File

@ -11,7 +11,7 @@ use Rector\Testing\PHPUnit\AbstractFileSystemRectorTestCase;
final class MoveServicesBySuffixToDirectoryRectorTest extends AbstractFileSystemRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $originalFile, string $expectedFileLocation, string $expectedFileContent): void
{
@ -21,7 +21,7 @@ final class MoveServicesBySuffixToDirectoryRectorTest extends AbstractFileSystem
$this->assertFileEquals($expectedFileContent, $expectedFileLocation);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
yield [
__DIR__ . '/Source/Entity/AppleRepository.php',

View File

@ -15,7 +15,7 @@ use Rector\BetterPhpDocParser\Tests\PhpDocInfo\PhpDocInfoPrinter\Source\Doctrine
final class DoctrineTest extends AbstractPhpDocInfoPrinterTest
{
/**
* @dataProvider provideDataForTestClass()
* @dataProvider provideDataClass()
*/
public function testClass(string $docFilePath, Node $node): void
{
@ -29,7 +29,7 @@ final class DoctrineTest extends AbstractPhpDocInfoPrinterTest
);
}
public function provideDataForTestClass(): Iterator
public function provideDataClass(): Iterator
{
yield [__DIR__ . '/Source/Doctrine/index_in_table.txt', new Class_(IndexInTable::class)];
yield [__DIR__ . '/Source/Doctrine/case_sensitive.txt', new Class_(CaseSensitive::class)];

View File

@ -12,14 +12,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class ModalToGetSetRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,7 +11,7 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class RenameMethodCallBasedOnParameterRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
@ -21,7 +21,7 @@ final class RenameMethodCallBasedOnParameterRectorTest extends AbstractRectorTes
/**
* @return string[]
*/
public function provideDataForTest(): iterable
public function provideData(): iterable
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class ChangeSnakedFixtureNameToCamelTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class ImplicitShortClassNameUseStatementRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class AppUsesStaticCallToUseStatementRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class CakePHPControllerActionToSymfonyControllerActionRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class CakePHPControllerRedirectToSymfonyRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class CakePHPControllerRenderToSymfonyRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -0,0 +1,30 @@
<?php
declare(strict_types=1);
namespace Rector\CakePHPToSymfony\Tests\Rector\Class_\CakePHPBeforeFilterToRequestEventSubscriberRector;
use Iterator;
use Rector\CakePHPToSymfony\Rector\Class_\CakePHPBeforeFilterToRequestEventSubscriberRector;
use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class CakePHPBeforeFilterToRequestEventSubscriberRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}
protected function getRectorClass(): string
{
return CakePHPBeforeFilterToRequestEventSubscriberRector::class;
}
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class CakePHPControllerComponentToSymfonyRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class CakePHPControllerHelperToSymfonyRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class CakePHPControllerToSymfonyControllerRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class CakePHPImplicitRouteToExplicitRouteAnnotationRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class CakePHPModelToDoctrineEntityRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,7 +11,7 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class CakePHPModelToDoctrineRepositoryRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file, string $expectedRepositoryFilePath, string $expectedRepositoryContentFile): void
{
@ -21,7 +21,7 @@ final class CakePHPModelToDoctrineRepositoryRectorTest extends AbstractRectorTes
$this->assertFileEquals($expectedRepositoryContentFile, $expectedRepositoryFilePath);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
yield [
__DIR__ . '/Fixture/find_first.inc',

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class CakePHPTemplateHToTwigRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFileWithoutAutoload($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class CakePHPTemplateToTwigRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFileWithoutAutoload($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class CakePHPTemplateTranslateToTwigRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFileWithoutAutoload($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class LogicalToBooleanRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class SetTypeToCastRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class CommonNotEqualRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class CallableThisArrayToAnonymousFunctionRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -16,14 +16,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class CombinedAssignRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class SimplifyDeMorganBinaryRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class SimplifyEmptyArrayCheckRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class ThrowWithPreviousExceptionRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -12,14 +12,14 @@ use Rector\ValueObject\PhpVersionFeature;
final class CompleteDynamicPropertiesRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class UnionTypeCompleteDynamicPropertiesRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/FixtureUnionTypes');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class JoinStringConcatRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class UseIdenticalOverEqualWithSameTypeRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class ForRepeatedCountToOwnVariableRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class ForToForeachRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class ForeachItemsAssignToEmptyArrayToAssignRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class ForeachToInArrayRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class SimplifyForeachToArrayFilterRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class SimplifyForeachToCoalescingRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class AddPregQuoteDelimiterRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class ArrayMergeOfNonArraysToSimpleArrayRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class ChangeArrayPushToArrayAssignRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class CompactToVariablesRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class InArrayAndArrayKeysToArrayKeyExistsRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class IntvalToTypeCastRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class IsAWithStringWithThirdArgumentRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class RemoveSoleValueSprintfRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class SimplifyFuncGetArgsCountRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class SimplifyInArrayValuesRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class SimplifyRegexPatternRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class SimplifyStrposLowerRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class SingleInArrayToCompareRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class StrlenZeroToIdenticalEmptyStringRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class BooleanNotIdenticalToNotIdenticalRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class GetClassToInstanceOfRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class SimplifyArraySearchRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class SimplifyBoolIdenticalTrueRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class SimplifyConditionsRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class CombineIfRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class ConsecutiveNullCompareReturnsToNullCoalesceQueueRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class ExplicitBoolCompareRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class RemoveAlwaysTrueConditionSetInConstructorRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class ShortenElseIfRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class SimplifyIfElseToTernaryRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class SimplifyIfIssetToNullCoalescingRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class SimplifyIfNotNullReturnRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class SimplifyIfReturnBoolRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class AbsolutizeRequireAndIncludePathRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class AndAssignsToSeparateLinesRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -16,14 +16,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class SimplifyUselessVariableRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class ArrayKeyExistsTernaryThenValueToCoalescingRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class SimplifyDuplicatedTernaryRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class SimplifyTautologyTernaryRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class UnnecessaryTernaryExpressionRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class SplitDoubleAssignRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class UseIncrementAssignRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class CatchExceptionNameMatchingTypeRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class SplitGroupedConstantsAndPropertiesRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class VarConstantCommentRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class MakeInheritedMethodVisibilitySameAsParentRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -14,14 +14,14 @@ final class SkipParentConstructOverrideInPHP72Test extends AbstractRectorTestCas
* @requires PHP >= 7.2
* @see https://phpunit.readthedocs.io/en/8.3/incomplete-and-skipped-tests.html#incomplete-and-skipped-tests-requires-tables-api
*
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/FixtureForPhp72');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class NewlineBeforeNewAssignSetRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -13,14 +13,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class ReturnArrayClassMethodToYieldRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -12,14 +12,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class YieldClassMethodToArrayClassMethodRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class AddArrayDefaultToArrayPropertyRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class EncapsedStringsToSprintfRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class CallUserFuncCallToVariadicRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class ConsistentImplodeRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class ConsistentPregDelimiterRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class FunctionCallToConstantRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class SimpleArrayCallableToStringRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class StrictArraySearchRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class VersionCompareFuncCallToConstantRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class IdenticalFalseToBooleanNotRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class NullableCompareToNullRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,14 +11,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class FollowRequireByDirRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -13,14 +13,14 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class PreferThisOrSelfMethodCallRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideData()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}

View File

@ -11,20 +11,20 @@ use Rector\Testing\PHPUnit\AbstractRectorTestCase;
final class ImportFullyQualifiedNamesRectorTest extends AbstractRectorTestCase
{
/**
* @dataProvider provideDataForTest()
* @dataProvider provideDataForTestFunction()
* @dataProvider provideData()
* @dataProvider provideDataFunction()
*/
public function test(string $file): void
{
$this->doTestFile($file);
}
public function provideDataForTest(): Iterator
public function provideData(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
}
public function provideDataForTestFunction(): Iterator
public function provideDataFunction(): Iterator
{
return $this->yieldFilesFromDirectory(__DIR__ . '/FixtureFunction');
}

Some files were not shown because too many files have changed in this diff Show More