Index: tests/phpunit/tests/link/adminUrl.php
===================================================================
--- tests/phpunit/tests/link/adminUrl.php	(revision 49310)
+++ tests/phpunit/tests/link/adminUrl.php	(working copy)
@@ -7,6 +7,8 @@
 
 	/**
 	 * @ticket 37446
+	 * 
+	 * @covers ::self_admin_url
 	 */
 	public function test_self_admin_url() {
 		$this->assertSame( admin_url(), self_admin_url() );
@@ -14,6 +16,8 @@
 
 	/**
 	 * @ticket 37446
+	 * 
+	 * @covers ::self_admin_url
 	 */
 	public function test_self_admin_url_with_path() {
 		$path = 'options-general.php';
@@ -23,6 +27,8 @@
 
 	/**
 	 * @ticket 37446
+	 * 
+	 * @covers ::self_admin_url
 	 */
 	public function test_self_admin_url_with_path_and_scheme() {
 		$path   = 'options-general.php';
@@ -33,6 +39,8 @@
 
 	/**
 	 * @ticket 37446
+	 * 
+	 * @covers ::self_admin_url
 	 */
 	public function test_self_admin_url_filtered() {
 		$path   = 'options-general.php';
Index: tests/phpunit/tests/link/getAdjacentPost.php
===================================================================
--- tests/phpunit/tests/link/getAdjacentPost.php	(revision 49310)
+++ tests/phpunit/tests/link/getAdjacentPost.php	(working copy)
@@ -1,7 +1,6 @@
 <?php
 /**
  * @group link
- * @covers ::get_adjacent_post
  */
 class Tests_Link_GetAdjacentPost extends WP_UnitTestCase {
 	protected $exclude_term;
@@ -8,6 +7,8 @@
 
 	/**
 	 * @ticket 17807
+	 * 
+	 * @covers ::get_adjacent_post
 	 */
 	public function test_get_adjacent_post() {
 		// Need some sample posts to test adjacency.
@@ -88,6 +89,8 @@
 
 	/**
 	 * @ticket 22112
+	 * 
+	 * @covers ::get_adjacent_post
 	 */
 	function test_get_adjacent_post_exclude_self_term() {
 		// Bump term_taxonomy to mimic shared term offsets.
@@ -175,6 +178,8 @@
 
 	/**
 	 * @ticket 32833
+	 * 
+	 * @covers ::get_adjacent_post
 	 */
 	public function test_get_adjacent_post_excluded_terms() {
 		register_taxonomy( 'wptests_tax', 'post' );
@@ -209,6 +214,8 @@
 
 	/**
 	 * @ticket 32833
+	 * 
+	 * @covers ::get_adjacent_post
 	 */
 	public function test_get_adjacent_post_excluded_terms_should_not_require_posts_to_have_terms_in_any_taxonomy() {
 		register_taxonomy( 'wptests_tax', 'post' );
@@ -246,6 +253,8 @@
 
 	/**
 	 * @ticket 35211
+	 * 
+	 * @covers ::get_adjacent_post
 	 */
 	public function test_get_adjacent_post_excluded_terms_filter() {
 		register_taxonomy( 'wptests_tax', 'post' );
@@ -280,6 +289,8 @@
 
 	/**
 	 * @ticket 43521
+	 * 
+	 * @covers ::get_adjacent_post
 	 */
 	public function test_get_adjacent_post_excluded_terms_filter_should_apply_to_empty_excluded_terms_parameter() {
 		register_taxonomy( 'wptests_tax', 'post' );
@@ -314,6 +325,8 @@
 
 	/**
 	 * @ticket 43521
+	 * 
+	 * @covers ::get_adjacent_post
 	 */
 	public function test_excluded_terms_filter_empty() {
 		register_taxonomy( 'wptests_tax', 'post' );
Index: tests/phpunit/tests/link/getAdjacentPostLink.php
===================================================================
--- tests/phpunit/tests/link/getAdjacentPostLink.php	(revision 49310)
+++ tests/phpunit/tests/link/getAdjacentPostLink.php	(working copy)
@@ -53,6 +53,9 @@
 		$GLOBALS['post'] = get_post( $this->post_ids[2] );
 	}
 
+	/**
+	 * @covers ::get_next_post_link
+	 */ 
 	public function test_get_next_post_link_default() {
 		$actual   = get_next_post_link();
 		$title    = get_post( $this->post_ids[1] )->post_title;
@@ -60,6 +63,9 @@
 		$this->assertSame( $expected, $actual );
 	}
 
+	/**
+	 * @covers ::get_previous_post_link
+	 */ 
 	public function test_get_previous_post_link_default() {
 		$actual   = get_previous_post_link();
 		$title    = get_post( $this->post_ids[3] )->post_title;
@@ -67,6 +73,9 @@
 		$this->assertSame( $expected, $actual );
 	}
 
+	/**
+	 * @covers ::get_next_post_link
+	 */ 
 	public function test_get_next_post_link_same_category() {
 		$actual   = get_next_post_link( '%link &raquo;', '%title', true );
 		$title    = get_post( $this->post_ids[1] )->post_title;
@@ -73,7 +82,10 @@
 		$expected = '<a href="' . home_url( '?p=' . $this->post_ids[1] ) . '" rel="next">' . $title . '</a> &raquo;';
 		$this->assertSame( $expected, $actual );
 	}
-
+	
+	/**
+	 * @covers ::get_previous_post_link
+	 */ 
 	public function test_get_previous_post_link_same_category() {
 		$actual   = get_previous_post_link( '&laquo; %link', '%title', true );
 		$title    = get_post( $this->post_ids[3] )->post_title;
@@ -80,7 +92,10 @@
 		$expected = '&laquo; <a href="' . home_url( '?p=' . $this->post_ids[3] ) . '" rel="prev">' . $title . '</a>';
 		$this->assertSame( $expected, $actual );
 	}
-
+	
+	/**
+	 * @covers ::get_next_post_link
+	 */ 
 	public function test_get_next_post_link_exclude_category() {
 		$actual   = get_next_post_link( '%link &raquo;', '%title', false, $this->cat_id );
 		$title    = get_post( $this->post_ids[1] )->post_title;
@@ -87,7 +102,10 @@
 		$expected = '<a href="' . home_url( '?p=' . $this->post_ids[1] ) . '" rel="next">' . $title . '</a> &raquo;';
 		$this->assertSame( $expected, $actual );
 	}
-
+	
+	/**
+	 * @covers ::get_previous_post_link
+	 */ 
 	public function test_get_previous_post_link_exclude_category() {
 		$actual   = get_previous_post_link( '&laquo; %link', '%title', false, $this->cat_id );
 		$title    = get_post( $this->post_ids[3] )->post_title;
Index: tests/phpunit/tests/link/getDashboardUrl.php
===================================================================
--- tests/phpunit/tests/link/getDashboardUrl.php	(revision 49310)
+++ tests/phpunit/tests/link/getDashboardUrl.php	(working copy)
@@ -20,6 +20,8 @@
 
 	/**
 	 * @ticket 39065
+	 * 
+	 * @covers ::get_dashboard_url
 	 */
 	public function test_get_dashboard_url_for_current_site_user() {
 		$this->assertSame( admin_url(), get_dashboard_url( self::$user_id ) );
@@ -27,6 +29,8 @@
 
 	/**
 	 * @ticket 39065
+	 * 
+	 * @covers ::get_dashboard_url
 	 */
 	public function test_get_dashboard_url_for_user_with_no_sites() {
 		add_filter( 'get_blogs_of_user', '__return_empty_array' );
@@ -39,6 +43,8 @@
 	/**
 	 * @ticket 39065
 	 * @group ms-required
+	 * 
+	 * @covers ::get_dashboard_url
 	 */
 	public function test_get_dashboard_url_for_network_administrator_with_no_sites() {
 		grant_super_admin( self::$user_id );
@@ -56,6 +62,8 @@
 	/**
 	 * @ticket 39065
 	 * @group ms-required
+	 * 
+	 * @covers ::get_dashboard_url
 	 */
 	public function test_get_dashboard_url_for_administrator_of_different_site() {
 		$site_id = self::factory()->blog->create( array( 'user_id' => self::$user_id ) );
Index: tests/phpunit/tests/link/getNextCommentsLink.php
===================================================================
--- tests/phpunit/tests/link/getNextCommentsLink.php	(revision 49310)
+++ tests/phpunit/tests/link/getNextCommentsLink.php	(working copy)
@@ -3,7 +3,6 @@
 /**
  * @group link
  * @group comment
- * @covers ::get_next_comments_link
  */
 class Tests_Link_GetNextCommentsLink extends WP_UnitTestCase {
 
@@ -23,6 +22,8 @@
 
 	/**
 	 * @ticket 20319
+	 * 
+	 * @covers ::get_next_comments_link
 	 */
 	public function test_page_should_default_to_1_when_no_cpage_query_var_is_found() {
 		$p = self::factory()->post->create();
Index: tests/phpunit/tests/link/getPostCommentsFeedLink.php
===================================================================
--- tests/phpunit/tests/link/getPostCommentsFeedLink.php	(revision 49310)
+++ tests/phpunit/tests/link/getPostCommentsFeedLink.php	(working copy)
@@ -4,6 +4,9 @@
  */
 class Tests_Link_GetPostCommentsFeedLink extends WP_UnitTestCase {
 
+	/**
+	 * @covers ::get_post_comments_feed_link
+	 */
 	public function test_post_link() {
 		$post_id = self::factory()->post->create();
 
@@ -19,6 +22,9 @@
 		$this->assertSame( $expected, $link );
 	}
 
+	/**
+	 * @covers ::get_post_comments_feed_link
+	 */
 	public function test_post_pretty_link() {
 		$this->set_permalink_structure( '/%year%/%monthnum%/%day%/%postname%/' );
 
@@ -30,6 +36,9 @@
 		$this->assertSame( $expected, $link );
 	}
 
+	/**
+	 * @covers ::get_post_comments_feed_link
+	 */
 	public function test_attachment_link() {
 		$post_id       = self::factory()->post->create();
 		$attachment_id = self::factory()->attachment->create_object(
@@ -53,6 +62,9 @@
 		$this->assertSame( $expected, $link );
 	}
 
+	/**
+	 * @covers ::get_post_comments_feed_link
+	 */
 	public function test_attachment_pretty_link() {
 		$this->set_permalink_structure( '/%year%/%monthnum%/%day%/%postname%/' );
 
@@ -79,6 +91,9 @@
 		$this->assertSame( $expected, $link );
 	}
 
+	/**
+	 * @covers ::get_post_comments_feed_link
+	 */
 	public function test_attachment_no_name_pretty_link() {
 		$this->set_permalink_structure( '/%year%/%monthnum%/%day%/%postname%/' );
 
@@ -98,6 +113,9 @@
 		$this->assertSame( $expected, $link );
 	}
 
+	/**
+	 * @covers ::get_post_comments_feed_link
+	 */
 	public function test_unattached_link() {
 		$attachment_id = self::factory()->attachment->create_object(
 			'image.jpg',
@@ -120,6 +138,9 @@
 		$this->assertSame( $expected, $link );
 	}
 
+	/**
+	 * @covers ::get_post_comments_feed_link
+	 */
 	public function test_unattached_pretty_link() {
 		$this->set_permalink_structure( '/%year%/%monthnum%/%day%/%postname%/' );
 
Index: tests/phpunit/tests/link/getPostTypeArchiveLink.php
===================================================================
--- tests/phpunit/tests/link/getPostTypeArchiveLink.php	(revision 49310)
+++ tests/phpunit/tests/link/getPostTypeArchiveLink.php	(working copy)
@@ -6,6 +6,8 @@
 
 	/**
 	 * @ticket 19902
+	 * 
+	 * @covers get_post_type_archive_link
 	 */
 	public function test_get_post_archive_link_with_post_archive_on_front_page() {
 		update_option( 'show_on_front', 'posts' );
@@ -16,6 +18,8 @@
 
 	/**
 	 * @ticket 19902
+	 * 
+	 * @covers get_post_type_archive_link
 	 */
 	public function test_get_post_archive_link_with_post_archive_on_a_blog_page() {
 		$page_for_posts = $this->factory->post->create(
Index: tests/phpunit/tests/link/getPreviewPostLink.php
===================================================================
--- tests/phpunit/tests/link/getPreviewPostLink.php	(revision 49310)
+++ tests/phpunit/tests/link/getPreviewPostLink.php	(working copy)
@@ -1,10 +1,12 @@
 <?php
 /**
  * @group link
- * @covers ::get_preview_post_link
  */
 class Tests_Link_GetPreviewPostLink extends WP_UnitTestCase {
 
+	/**
+	 * @covers ::get_preview_post_link
+	 */
 	public function test_get_preview_post_link() {
 		$post = self::factory()->post->create();
 
@@ -11,6 +13,9 @@
 		$this->assertSame( add_query_arg( 'preview', 'true', get_permalink( $post ) ), get_preview_post_link( $post ) );
 	}
 
+	/**
+	 * @covers ::get_preview_post_link
+	 */
 	public function test_get_preview_post_link_should_add_additional_query_vars() {
 		$post = self::factory()->post->create();
 
@@ -35,6 +40,9 @@
 		);
 	}
 
+	/**
+	 * @covers ::get_preview_post_link
+	 */
 	public function test_get_preview_post_link_should_use_custom_base_preview_link() {
 		$post = self::factory()->post->create();
 
@@ -53,6 +61,9 @@
 		);
 	}
 
+	/**
+	 * @covers ::get_preview_post_link
+	 */
 	public function test_get_preview_post_link_should_return_null_for_non_existent_post() {
 		$this->assertNull( get_preview_post_link() );
 		$this->assertNull( get_preview_post_link( 9999 ) );
@@ -59,6 +70,9 @@
 		$this->assertNull( get_preview_post_link( 'foo' ) );
 	}
 
+	/**
+	 * @covers ::get_preview_post_link
+	 */
 	public function test_get_preview_post_link_for_global_post() {
 		$post = self::factory()->post->create_and_get();
 
@@ -67,6 +81,9 @@
 		$this->assertSame( add_query_arg( 'preview', 'true', get_permalink( $post ) ), get_preview_post_link() );
 	}
 
+	/**
+	 * @covers ::get_preview_post_link
+	 */
 	public function test_get_preview_post_link_should_return_empty_string_for_non_viewable_post_type() {
 		$post_type = register_post_type(
 			'non_viewable_cpt',
Index: tests/phpunit/tests/link/getPreviousCommentsLink.php
===================================================================
--- tests/phpunit/tests/link/getPreviousCommentsLink.php	(revision 49310)
+++ tests/phpunit/tests/link/getPreviousCommentsLink.php	(working copy)
@@ -3,7 +3,6 @@
 /**
  * @group link
  * @group comment
- * @covers ::get_previous_comments_link
  */
 class Tests_Link_GetPreviousCommentsLink extends WP_UnitTestCase {
 
@@ -21,6 +20,9 @@
 		set_query_var( 'cpage', $cpage );
 	}
 
+	/**
+	 * @covers ::get_previous_comments_link
+	 */
 	public function test_page_should_default_to_1_when_no_cpage_query_var_is_found() {
 		$p = self::factory()->post->create();
 		$this->go_to( get_permalink( $p ) );
Index: tests/phpunit/tests/link/getThePrivacyPolicyLink.php
===================================================================
--- tests/phpunit/tests/link/getThePrivacyPolicyLink.php	(revision 49310)
+++ tests/phpunit/tests/link/getThePrivacyPolicyLink.php	(working copy)
@@ -12,7 +12,6 @@
  *
  * @group link
  * @group privacy
- * @covers ::get_the_privacy_policy_link
  *
  * @since 4.9.6
  */
@@ -73,6 +72,8 @@
 	 * The function should return a valid link if a privacy policy page has been
 	 * created and set as the `wp_page_for_privacy_policy`. The post title should
 	 * be used as the link text.
+	 * 
+	 * @covers ::get_the_privacy_policy_link
 	 */
 	public function test_get_the_privacy_policy_link_should_return_valid_link_when_privacy_page_set() {
 		update_option( 'wp_page_for_privacy_policy', self::$privacy_policy_page_id );
@@ -87,6 +88,8 @@
 	/**
 	 * The function should prepend the supplied `$before` markup and append the
 	 * supplied `$after` markup when the `wp_page_for_privacy_policy` is configured.
+	 * 
+	 * @covers ::get_the_privacy_policy_link
 	 */
 	public function test_get_the_privacy_policy_link_should_prepend_and_append_supplied_markup_when_privacy_page_set() {
 		update_option( 'wp_page_for_privacy_policy', self::$privacy_policy_page_id );
@@ -101,6 +104,8 @@
 	/**
 	 * The function should _not_ prepend the supplied `$before` markup and append
 	 * the supplied `$after` markup when the `wp_page_for_privacy_policy` is _not_ configured.
+	 * 
+	 * @covers ::get_the_privacy_policy_link
 	 */
 	public function test_get_the_privacy_policy_link_should_not_prepend_and_append_supplied_markup_when_privacy_page_not_set() {
 		$actual_link = get_the_privacy_policy_link( self::$before, self::$after );
@@ -113,6 +118,8 @@
 	 * for the privacy policy.
 	 *
 	 * @ticket 44192
+	 * 
+	 * @covers ::get_the_privacy_policy_link
 	 */
 	public function test_function_should_return_empty_string_when_privacy_page_title_empty() {
 		$nameless_page_id = $this->factory->post->create(
@@ -129,6 +136,8 @@
 
 	/**
 	 * The function should return an empty string when `wp_page_for_privacy_policy` is _not_ configured.
+	 * 
+	 * @covers ::get_the_privacy_policy_link
 	 */
 	public function test_get_the_privacy_policy_link_should_return_empty_string_when_privacy_page_not_set() {
 		$this->assertSame( '', get_the_privacy_policy_link() );
@@ -136,6 +145,8 @@
 
 	/**
 	 * The output of the get_the_privacy_policy_link() function should be filterable with the 'privacy_policy_link' filter.
+	 * 
+	 * @covers ::get_the_privacy_policy_link
 	 */
 	public function test_get_the_privacy_policy_link_should_be_filterable() {
 		update_option( 'wp_page_for_privacy_policy', self::$privacy_policy_page_id );
Index: tests/phpunit/tests/link/themeFile.php
===================================================================
--- tests/phpunit/tests/link/themeFile.php	(revision 49310)
+++ tests/phpunit/tests/link/themeFile.php	(working copy)
@@ -45,6 +45,9 @@
 	 * @ticket 18302
 	 *
 	 * @dataProvider data_theme_files
+	 * 
+	 * @covers ::get_theme_file_uri
+	 * @covers ::get_parent_theme_file_uri
 	 */
 	public function test_theme_file_uri_with_parent_theme( $file, $expected_theme, $existence ) {
 		switch_theme( 'theme-file-parent' );
@@ -58,6 +61,9 @@
 	 * @ticket 18302
 	 *
 	 * @dataProvider data_theme_files
+	 * 
+	 * @covers ::get_theme_file_uri
+	 * @covers ::get_parent_theme_file_uri
 	 */
 	public function test_theme_file_uri_with_child_theme( $file, $expected_theme, $existence ) {
 		switch_theme( 'theme-file-child' );
@@ -73,6 +79,9 @@
 	 * @ticket 18302
 	 *
 	 * @dataProvider data_theme_files
+	 * 
+	 * @covers ::get_theme_file_path
+	 * @covers ::get_parent_theme_file_path
 	 */
 	public function test_theme_file_path_with_parent_theme( $file, $expected_theme, $existence ) {
 		switch_theme( 'theme-file-parent' );
@@ -86,6 +95,9 @@
 	 * @ticket 18302
 	 *
 	 * @dataProvider data_theme_files
+	 * 
+	 * @covers ::get_theme_file_path
+	 * @covers ::get_parent_theme_file_path
 	 */
 	public function test_theme_file_path_with_child_theme( $file, $expected_theme, $existence ) {
 		switch_theme( 'theme-file-child' );
@@ -124,6 +136,9 @@
 	 * @ticket 18302
 	 *
 	 * @dataProvider data_theme_files
+	 * 
+	 * @covers ::get_theme_file_uri
+	 * @covers ::get_parent_theme_file_uri
 	 */
 	public function test_theme_file_uri_returns_valid_uri( $file, $expected_theme, $existence ) {
 		$uri        = get_theme_file_uri( $file );
Index: tests/phpunit/tests/link/wpGetCanonicalURL.php
===================================================================
--- tests/phpunit/tests/link/wpGetCanonicalURL.php	(revision 49310)
+++ tests/phpunit/tests/link/wpGetCanonicalURL.php	(working copy)
@@ -3,7 +3,6 @@
 /**
  * @group link
  * @group canonical
- * @covers ::wp_get_canonical_url
  */
 class Tests_WpGetCanonicalURL extends WP_UnitTestCase {
 	public static $post_id;
@@ -19,6 +18,8 @@
 
 	/**
 	 * Test for a non existing post.
+	 * 
+	 * @covers ::wp_get_canonical_url
 	 */
 	public function test_non_existing_post() {
 		$this->assertFalse( wp_get_canonical_url( -1 ) );
@@ -26,6 +27,8 @@
 
 	/**
 	 * Test for a post that is not published.
+	 * 
+	 * @covers ::wp_get_canonical_url
 	 */
 	public function test_post_status() {
 		$post_id = self::factory()->post->create(
@@ -39,6 +42,8 @@
 
 	/**
 	 * Test for a page that is not the queried object.
+	 * 
+	 * @covers ::wp_get_canonical_url
 	 */
 	public function test_non_current_page() {
 		$this->assertSame( get_permalink( self::$post_id ), wp_get_canonical_url( self::$post_id ) );
@@ -46,6 +51,8 @@
 
 	/**
 	 * Test non permalink structure page usage.
+	 * 
+	 * @covers ::wp_get_canonical_url
 	 */
 	public function test_paged_with_plain_permalink_structure() {
 		$link = add_query_arg(
@@ -70,6 +77,8 @@
 
 	/**
 	 * Test permalink structure page usage.
+	 * 
+	 * @covers ::wp_get_canonical_url
 	 */
 	public function test_paged_with_custom_permalink_structure() {
 		$this->set_permalink_structure( '/%postname%/' );
@@ -91,7 +100,9 @@
 	}
 
 	/**
-	 *  Test non permalink structure comment page usage.
+	 * Test non permalink structure comment page usage.
+	 * 
+	 * @covers ::wp_get_canonical_url
 	 */
 	public function test_comments_paged_with_plain_permalink_structure() {
 		$cpage = 2;
@@ -118,6 +129,8 @@
 
 	/**
 	 * Test permalink structure comment page usage.
+	 * 
+	 * @covers ::wp_get_canonical_url
 	 */
 	public function test_comments_paged_with_pretty_permalink_structure() {
 		global $wp_rewrite;
@@ -142,6 +155,8 @@
 
 	/**
 	 * Test calling of filter.
+	 * 
+	 * @covers ::wp_get_canonical_url
 	 */
 	public function test_get_canonical_url_filter() {
 		add_filter( 'get_canonical_url', array( $this, 'canonical_url_filter' ) );
Index: tests/phpunit/tests/load/convertHrToBytes.php
===================================================================
--- tests/phpunit/tests/load/convertHrToBytes.php	(revision 49310)
+++ tests/phpunit/tests/load/convertHrToBytes.php	(working copy)
@@ -15,6 +15,8 @@
 	 *
 	 * @param int|string $value    The value passed to wp_convert_hr_to_bytes().
 	 * @param int        $expected The expected output of wp_convert_hr_to_bytes().
+	 * 
+	 * @covers ::wp_convert_hr_to_bytes
 	 */
 	function test_wp_convert_hr_to_bytes( $value, $expected ) {
 		$this->assertSame( $expected, wp_convert_hr_to_bytes( $value ) );
Index: tests/phpunit/tests/load/isIniValueChangeable.php
===================================================================
--- tests/phpunit/tests/load/isIniValueChangeable.php	(revision 49310)
+++ tests/phpunit/tests/load/isIniValueChangeable.php	(working copy)
@@ -16,6 +16,8 @@
 	 *
 	 * @param string $setting  The setting passed to wp_is_ini_value_changeable().
 	 * @param bool   $expected The expected output of wp_convert_hr_to_bytes().
+	 * 
+	 * @covers ::wp_is_ini_value_changeable
 	 */
 	function test_wp_is_ini_value_changeable( $setting, $expected ) {
 		$this->assertSame( $expected, wp_is_ini_value_changeable( $setting ) );
