* 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 */ final class EncodingFixerTest extends AbstractFixerTestCase { /** * @param string $expected * @param null|string $input * * @dataProvider provideFixCases */ public function testFix($expected, $input = null, \SplFileInfo $file = null) { $this->doTest($expected, $input, $file); } public function provideFixCases() { yield $this->prepareTestCase('test-utf8.case1.php', 'test-utf8.case1-bom.php'); yield $this->prepareTestCase('test-utf8.case2.php', 'test-utf8.case2-bom.php'); yield ['getTestFile(__DIR__.'/../../Fixtures/FixerTest/encoding/'.$expectedFilename); $inputFile = $inputFilename ? $this->getTestFile(__DIR__.'/../../Fixtures/FixerTest/encoding/'.$inputFilename) : null; return [ file_get_contents($expectedFile->getRealPath()), $inputFile ? file_get_contents($inputFile->getRealPath()) : null, $inputFile ?: $expectedFile, ]; } }