From 30fc5ec439b84a44250ec3b95c4d420818eb72ff Mon Sep 17 00:00:00 2001 From: Tonya Mork Date: Tue, 2 Nov 2021 21:56:10 +0000 Subject: [PATCH] Build/Test Tools: Add missing `@covers` tags for `Tests_Admin_includesFile`. Follow-up to [25002], [42773]. Props pbearne, jrf, hellofromTonya. See #39265. git-svn-id: https://develop.svn.wordpress.org/trunk@51992 602fd350-edb4-49c9-b593-d223f7449a82 --- tests/phpunit/tests/admin/includesFile.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/phpunit/tests/admin/includesFile.php b/tests/phpunit/tests/admin/includesFile.php index db17f834b5..6a47bc0abd 100644 --- a/tests/phpunit/tests/admin/includesFile.php +++ b/tests/phpunit/tests/admin/includesFile.php @@ -8,6 +8,8 @@ class Tests_Admin_IncludesFile extends WP_UnitTestCase { /** * @ticket 20449 + * + * @covers ::get_home_path */ function test_get_home_path() { $home = get_option( 'home' ); @@ -34,6 +36,8 @@ class Tests_Admin_IncludesFile extends WP_UnitTestCase { /** * @ticket 43329 + * + * @covers ::download_url */ public function test_download_url_non_200_response_code() { add_filter( 'pre_http_request', array( $this, '_fake_download_url_non_200_response_code' ), 10, 3 );