* 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\PhpdocNoAccessFixer */ final class PhpdocNoAccessFixerTest extends AbstractFixerTestCase { public function testFixAccess(): void { $expected = <<<'EOF' doTest($expected, $input); } public function testFixMany(): void { $expected = <<<'EOF' doTest($expected, $input); } public function testDoNothing(): void { $expected = <<<'EOF' doTest($expected); } }