* 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\Semicolon; use PhpCsFixer\Tests\Test\AbstractFixerTestCase; /** * @author Dariusz Rumiński * * @internal * * @covers \PhpCsFixer\Fixer\Semicolon\NoEmptyStatementFixer * * @extends AbstractFixerTestCase<\PhpCsFixer\Fixer\Semicolon\NoEmptyStatementFixer> */ final class NoEmptyStatementFixerTest extends AbstractFixerTestCase { /** * @dataProvider provideNoEmptyStatementsCases */ public function testNoEmptyStatements(string $expected, ?string $input = null): void { $this->doTest($expected, $input); } /** * @return iterable */ public static function provideNoEmptyStatementsCases(): iterable { yield [ '1){ } ', '1){ }; ', ]; yield [ '1) { } else { } ', '1) { } else { }; ', ]; yield [ ' $c) { } ', ' $c) { }; ', ]; yield [ ' 1){ } do { } while($a>1); // 1 ', ' 1){ }; do { } while($a>1); 1; // 1 ', ]; yield [ '{$o}; } ', '{$o}; }; ', ]; yield [ 'doTest($expected, $input); } /** * @return iterable */ public static function provideFixCases(): iterable { yield [ 'doTest($expected, $input); } /** * @return iterable */ public static function provideCasesWithShortOpenTagCases(): iterable { yield [ 'doTest($expected, $input); } /** * @return iterable */ public static function provideFixMultipleSemicolonsCases(): iterable { yield [ 'doTest($expected, $input); } /** * @return iterable */ public static function provideFix81Cases(): iterable { yield [ '