diff --git a/tests/Classes/DoctrineProxyForbiddenClassNamesExtensionTest.php b/tests/Classes/DoctrineProxyForbiddenClassNamesExtensionTest.php index 5d6800fd..99cfd18a 100644 --- a/tests/Classes/DoctrineProxyForbiddenClassNamesExtensionTest.php +++ b/tests/Classes/DoctrineProxyForbiddenClassNamesExtensionTest.php @@ -8,6 +8,7 @@ use function array_merge; /** + * @covers \PHPStan\Rules\Classes\InstantiationRule * @extends RuleTestCase * @runInSeparateProcess */ diff --git a/tests/Rules/DeadCode/UnusedPrivatePropertyRuleTest.php b/tests/Rules/DeadCode/UnusedPrivatePropertyRuleTest.php index e7a88b28..40fe00b2 100644 --- a/tests/Rules/DeadCode/UnusedPrivatePropertyRuleTest.php +++ b/tests/Rules/DeadCode/UnusedPrivatePropertyRuleTest.php @@ -7,6 +7,7 @@ use const PHP_VERSION_ID; /** + * @covers \PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule * @extends RuleTestCase */ class UnusedPrivatePropertyRuleTest extends RuleTestCase diff --git a/tests/Rules/Doctrine/ORM/DqlRuleTest.php b/tests/Rules/Doctrine/ORM/DqlRuleTest.php index 6e019ebc..491196b9 100644 --- a/tests/Rules/Doctrine/ORM/DqlRuleTest.php +++ b/tests/Rules/Doctrine/ORM/DqlRuleTest.php @@ -10,6 +10,7 @@ use function strpos; /** + * @covers \PHPStan\Rules\Doctrine\ORM\DqlRule * @extends RuleTestCase * @runInSeparateProcess */ diff --git a/tests/Rules/Doctrine/ORM/EntityColumnRuleTest.php b/tests/Rules/Doctrine/ORM/EntityColumnRuleTest.php index 5fd80dcc..df6504c6 100644 --- a/tests/Rules/Doctrine/ORM/EntityColumnRuleTest.php +++ b/tests/Rules/Doctrine/ORM/EntityColumnRuleTest.php @@ -35,6 +35,7 @@ use const PHP_VERSION_ID; /** + * @covers \PHPStan\Rules\Doctrine\ORM\EntityColumnRule * @extends RuleTestCase * @runInSeparateProcess */ diff --git a/tests/Rules/Doctrine/ORM/EntityConstructorNotFinalRuleTest.php b/tests/Rules/Doctrine/ORM/EntityConstructorNotFinalRuleTest.php index 5427f788..bf9929ec 100644 --- a/tests/Rules/Doctrine/ORM/EntityConstructorNotFinalRuleTest.php +++ b/tests/Rules/Doctrine/ORM/EntityConstructorNotFinalRuleTest.php @@ -8,6 +8,7 @@ use PHPStan\Type\Doctrine\ObjectMetadataResolver; /** + * @covers \PHPStan\Rules\Doctrine\ORM\EntityConstructorNotFinalRule * @extends RuleTestCase * @runInSeparateProcess */ diff --git a/tests/Rules/Doctrine/ORM/EntityMappingExceptionRuleTest.php b/tests/Rules/Doctrine/ORM/EntityMappingExceptionRuleTest.php index b5881adb..f661abdc 100644 --- a/tests/Rules/Doctrine/ORM/EntityMappingExceptionRuleTest.php +++ b/tests/Rules/Doctrine/ORM/EntityMappingExceptionRuleTest.php @@ -8,6 +8,7 @@ use const PHP_VERSION_ID; /** + * @covers \PHPStan\Rules\Doctrine\ORM\EntityMappingExceptionRule * @extends RuleTestCase * @runInSeparateProcess */ diff --git a/tests/Rules/Doctrine/ORM/EntityNotFinalRuleTest.php b/tests/Rules/Doctrine/ORM/EntityNotFinalRuleTest.php index a1474f56..a32036e3 100644 --- a/tests/Rules/Doctrine/ORM/EntityNotFinalRuleTest.php +++ b/tests/Rules/Doctrine/ORM/EntityNotFinalRuleTest.php @@ -8,6 +8,7 @@ use PHPStan\Type\Doctrine\ObjectMetadataResolver; /** + * @covers \PHPStan\Rules\Doctrine\ORM\EntityNotFinalRule * @extends RuleTestCase * @runInSeparateProcess */ diff --git a/tests/Rules/Doctrine/ORM/EntityRelationRuleTest.php b/tests/Rules/Doctrine/ORM/EntityRelationRuleTest.php index 477b9157..aa564b50 100644 --- a/tests/Rules/Doctrine/ORM/EntityRelationRuleTest.php +++ b/tests/Rules/Doctrine/ORM/EntityRelationRuleTest.php @@ -9,6 +9,7 @@ use const PHP_VERSION_ID; /** + * @covers \PHPStan\Rules\Doctrine\ORM\EntityColumnRule * @extends RuleTestCase * @runInSeparateProcess */ diff --git a/tests/Rules/Doctrine/ORM/MagicRepositoryMethodCallRuleTest.php b/tests/Rules/Doctrine/ORM/MagicRepositoryMethodCallRuleTest.php index 6b09b12e..2dd6fc38 100644 --- a/tests/Rules/Doctrine/ORM/MagicRepositoryMethodCallRuleTest.php +++ b/tests/Rules/Doctrine/ORM/MagicRepositoryMethodCallRuleTest.php @@ -7,6 +7,7 @@ use PHPStan\Testing\RuleTestCase; /** + * @covers \PHPStan\Rules\Methods\CallMethodsRule * @extends RuleTestCase */ class MagicRepositoryMethodCallRuleTest extends RuleTestCase diff --git a/tests/Rules/Doctrine/ORM/QueryBuilderDqlRuleTest.php b/tests/Rules/Doctrine/ORM/QueryBuilderDqlRuleTest.php index 65fd38d6..2650cf79 100644 --- a/tests/Rules/Doctrine/ORM/QueryBuilderDqlRuleTest.php +++ b/tests/Rules/Doctrine/ORM/QueryBuilderDqlRuleTest.php @@ -7,6 +7,7 @@ use PHPStan\Type\Doctrine\ObjectMetadataResolver; /** + * @covers \PHPStan\Rules\Doctrine\ORM\QueryBuilderDqlRule * @extends RuleTestCase */ class QueryBuilderDqlRuleTest extends RuleTestCase diff --git a/tests/Rules/Doctrine/ORM/RepositoryMethodCallRuleTest.php b/tests/Rules/Doctrine/ORM/RepositoryMethodCallRuleTest.php index da10cbf3..4142724f 100644 --- a/tests/Rules/Doctrine/ORM/RepositoryMethodCallRuleTest.php +++ b/tests/Rules/Doctrine/ORM/RepositoryMethodCallRuleTest.php @@ -7,6 +7,7 @@ use PHPStan\Type\Doctrine\ObjectMetadataResolver; /** + * @covers \PHPStan\Rules\Doctrine\ORM\RepositoryMethodCallRule * @extends RuleTestCase */ class RepositoryMethodCallRuleTest extends RuleTestCase diff --git a/tests/Rules/Doctrine/ORM/RepositoryMethodCallRuleWithoutObjectManagerLoaderTest.php b/tests/Rules/Doctrine/ORM/RepositoryMethodCallRuleWithoutObjectManagerLoaderTest.php index 849d3675..1dfd10d9 100644 --- a/tests/Rules/Doctrine/ORM/RepositoryMethodCallRuleWithoutObjectManagerLoaderTest.php +++ b/tests/Rules/Doctrine/ORM/RepositoryMethodCallRuleWithoutObjectManagerLoaderTest.php @@ -7,6 +7,7 @@ use PHPStan\Type\Doctrine\ObjectMetadataResolver; /** + * @covers \PHPStan\Rules\Doctrine\ORM\RepositoryMethodCallRule * @extends RuleTestCase */ class RepositoryMethodCallRuleWithoutObjectManagerLoaderTest extends RuleTestCase diff --git a/tests/Rules/Exceptions/CatchWithUnthrownExceptionRuleTest.php b/tests/Rules/Exceptions/CatchWithUnthrownExceptionRuleTest.php index f3895dd8..5a97d8ea 100644 --- a/tests/Rules/Exceptions/CatchWithUnthrownExceptionRuleTest.php +++ b/tests/Rules/Exceptions/CatchWithUnthrownExceptionRuleTest.php @@ -6,6 +6,7 @@ use PHPStan\Testing\RuleTestCase; /** + * @covers \PHPStan\Rules\Exceptions\CatchWithUnthrownExceptionRule * @extends RuleTestCase */ class CatchWithUnthrownExceptionRuleTest extends RuleTestCase diff --git a/tests/Rules/Exceptions/TooWideMethodThrowTypeRuleTest.php b/tests/Rules/Exceptions/TooWideMethodThrowTypeRuleTest.php index e3d91158..41956afb 100644 --- a/tests/Rules/Exceptions/TooWideMethodThrowTypeRuleTest.php +++ b/tests/Rules/Exceptions/TooWideMethodThrowTypeRuleTest.php @@ -6,6 +6,7 @@ use PHPStan\Testing\RuleTestCase; /** + * @covers \PHPStan\Rules\Exceptions\TooWideMethodThrowTypeRule * @extends RuleTestCase */ class TooWideMethodThrowTypeRuleTest extends RuleTestCase diff --git a/tests/Rules/Properties/MissingGedmoByPhpDocPropertyAssignRuleTest.php b/tests/Rules/Properties/MissingGedmoByPhpDocPropertyAssignRuleTest.php index 7b66451e..b7699dde 100644 --- a/tests/Rules/Properties/MissingGedmoByPhpDocPropertyAssignRuleTest.php +++ b/tests/Rules/Properties/MissingGedmoByPhpDocPropertyAssignRuleTest.php @@ -9,6 +9,7 @@ use PHPStan\Type\Doctrine\ObjectMetadataResolver; /** + * @covers \PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule * @extends RuleTestCase */ class MissingGedmoByPhpDocPropertyAssignRuleTest extends RuleTestCase diff --git a/tests/Rules/Properties/MissingGedmoPropertyAssignRuleTest.php b/tests/Rules/Properties/MissingGedmoPropertyAssignRuleTest.php index 60671537..5bbca2d5 100644 --- a/tests/Rules/Properties/MissingGedmoPropertyAssignRuleTest.php +++ b/tests/Rules/Properties/MissingGedmoPropertyAssignRuleTest.php @@ -11,6 +11,7 @@ use const PHP_VERSION_ID; /** + * @covers \PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule * @extends RuleTestCase */ class MissingGedmoPropertyAssignRuleTest extends RuleTestCase diff --git a/tests/Rules/Properties/MissingReadOnlyByPhpDocPropertyAssignRuleTest.php b/tests/Rules/Properties/MissingReadOnlyByPhpDocPropertyAssignRuleTest.php index 8a72494f..a6991e82 100644 --- a/tests/Rules/Properties/MissingReadOnlyByPhpDocPropertyAssignRuleTest.php +++ b/tests/Rules/Properties/MissingReadOnlyByPhpDocPropertyAssignRuleTest.php @@ -6,6 +6,7 @@ use PHPStan\Testing\RuleTestCase; /** + * @covers \PHPStan\Rules\Properties\MissingReadOnlyByPhpDocPropertyAssignRule * @extends RuleTestCase */ class MissingReadOnlyByPhpDocPropertyAssignRuleTest extends RuleTestCase diff --git a/tests/Rules/Properties/MissingReadOnlyPropertyAssignRuleTest.php b/tests/Rules/Properties/MissingReadOnlyPropertyAssignRuleTest.php index 6f5c545f..9eb65233 100644 --- a/tests/Rules/Properties/MissingReadOnlyPropertyAssignRuleTest.php +++ b/tests/Rules/Properties/MissingReadOnlyPropertyAssignRuleTest.php @@ -7,6 +7,7 @@ use const PHP_VERSION_ID; /** + * @covers \PHPStan\Rules\Properties\MissingReadOnlyPropertyAssignRule * @extends RuleTestCase */ class MissingReadOnlyPropertyAssignRuleTest extends RuleTestCase