From eddc7c648a10de3ac1d87426b80a4882515ce86b Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 29 Oct 2022 13:39:05 +0000 Subject: [PATCH] Tests: Move the tests for pluggable function signatures to the `pluggable` directory. This aims to bring some consistency to the location of pluggable function tests. Includes: * Renaming the test class to better reflect the intention of the tests. * Adding a `@coversNothing` tag to the class DocBlock. Follow-up to [34126], [53478], [54702]. Props pbearne, SergeyBiryukov. See #56793, #56782. git-svn-id: https://develop.svn.wordpress.org/trunk@54716 602fd350-edb4-49c9-b593-d223f7449a82 --- .../phpunit/tests/{pluggable.php => pluggable/signatures.php} | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) rename tests/phpunit/tests/{pluggable.php => pluggable/signatures.php} (99%) diff --git a/tests/phpunit/tests/pluggable.php b/tests/phpunit/tests/pluggable/signatures.php similarity index 99% rename from tests/phpunit/tests/pluggable.php rename to tests/phpunit/tests/pluggable/signatures.php index 1c6a38a525..a802b03766 100644 --- a/tests/phpunit/tests/pluggable.php +++ b/tests/phpunit/tests/pluggable/signatures.php @@ -2,8 +2,10 @@ /** * @group pluggable + * + * @coversNothing */ -class Tests_Pluggable extends WP_UnitTestCase { +class Tests_Pluggable_Signatures extends WP_UnitTestCase { /** * Tests that the signatures of all functions in pluggable.php match their expected signature.