* 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\PhpdocNoPackageFixer * * @extends AbstractFixerTestCase<\PhpCsFixer\Fixer\Phpdoc\PhpdocNoPackageFixer> */ final class PhpdocNoPackageFixerTest extends AbstractFixerTestCase { public function testFixPackage(): void { $expected = <<<'EOF' doTest($expected, $input); } public function testFixSubpackage(): void { $expected = <<<'EOF' doTest($expected, $input); } public function testFixMany(): void { $expected = <<<'EOF' doTest($expected, $input); } public function testDoNothing(): void { $expected = <<<'EOF' doTest($expected); } }