From 4e02784e4e2d9397f06022ad850f0ccac12589cf Mon Sep 17 00:00:00 2001 From: Tonya Mork Date: Tue, 2 Nov 2021 22:07:49 +0000 Subject: [PATCH] Build/Test Tools: Add missing `@covers` and visibility for `Tests_Admin_includesMisc`. Adds the `@covers` tag to the test DocBlock. Adds missing `public` visibility to the test method. Follow-up to [25002]. Props pbearne, jrf, hellofromTonya. See #39265. git-svn-id: https://develop.svn.wordpress.org/trunk@51994 602fd350-edb4-49c9-b593-d223f7449a82 --- tests/phpunit/tests/admin/includesMisc.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/phpunit/tests/admin/includesMisc.php b/tests/phpunit/tests/admin/includesMisc.php index 6b267335c4..ce0ef7c6c5 100644 --- a/tests/phpunit/tests/admin/includesMisc.php +++ b/tests/phpunit/tests/admin/includesMisc.php @@ -4,7 +4,11 @@ * @group admin */ class Tests_Admin_IncludesMisc extends WP_UnitTestCase { - function test_shorten_url() { + + /** + * @covers ::url_shorten + */ + public function test_shorten_url() { $tests = array( 'wordpress\.org/about/philosophy' => 'wordpress\.org/about/philosophy', // No longer strips slashes.