* 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\Phpdoc; use PhpCsFixer\Tests\Test\AbstractFixerTestCase; /** * @author Graham Campbell * * @internal * * @covers \PhpCsFixer\Fixer\Phpdoc\PhpdocNoEmptyReturnFixer */ final class PhpdocNoEmptyReturnFixerTest extends AbstractFixerTestCase { public function testFixVoid() { $expected = <<<'EOF' doTest($expected, $input); } public function testFixNull() { $expected = <<<'EOF' doTest($expected, $input); } public function testFixVoidCaseInsensitive() { $expected = <<<'EOF' doTest($expected, $input); } public function testFixNullCaseInsensitive() { $expected = <<<'EOF' doTest($expected, $input); } public function testFixFull() { $expected = <<<'EOF' doTest($expected, $input); } public function testDoNothing() { $expected = <<<'EOF' doTest($expected); } public function testDoNothingAgain() { $expected = <<<'EOF' doTest($expected); } public function testOtherDoNothing() { $expected = <<<'EOF' doTest($expected); } public function testYetAnotherDoNothing() { $expected = <<<'EOF' doTest($expected); } public function testHandleSingleLinePhpdoc() { $expected = <<<'EOF' doTest($expected, $input); } }