* Dariusz Rumiński * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ namespace PhpCsFixer\Tests\Fixer\Basic; use PhpCsFixer\Tests\Test\AbstractFixerTestCase; /** * @author Dariusz Rumiński * * @internal * * @covers \PhpCsFixer\Fixer\Basic\EncodingFixer * * @extends AbstractFixerTestCase<\PhpCsFixer\Fixer\Basic\EncodingFixer> */ final class EncodingFixerTest extends AbstractFixerTestCase { /** * @dataProvider provideFixCases */ public function testFix(string $expected, ?string $input = null, ?\SplFileInfo $file = null): void { $this->doTest($expected, $input, $file); } /** * @return iterable */ public static function provideFixCases(): iterable { yield self::prepareTestCase('test-utf8.case1.php', 'test-utf8.case1-bom.php'); yield self::prepareTestCase('test-utf8.case2.php', 'test-utf8.case2-bom.php'); yield ['getRealPath()), null !== $inputFile ? file_get_contents($inputFile->getRealPath()) : null, $inputFile ?? $expectedFile, ]; } }