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
This commit is contained in:
Tonya Mork 2021-11-02 22:07:49 +00:00
parent aa83121b9f
commit 4e02784e4e

View File

@ -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.