Index: tests/phpunit/tests/customize/manager.php
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- tests/phpunit/tests/customize/manager.php	(revision 91b3164ee5950c9716e043fee22146e0269d4edd)
+++ tests/phpunit/tests/customize/manager.php	(date 1517499111000)
@@ -1742,7 +1742,7 @@
 	 * publishing
 	 *
 	 * @ticket 39221
-	 * @covers _wp_customize_publish_changeset()
+	 * @covers ::_wp_customize_publish_changeset()
 	 * @see WP_Customize_Widgets::schedule_customize_register()
 	 * @see WP_Customize_Widgets::customize_register()
 	 */
Index: tests/phpunit/tests/dependencies/scripts.php
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- tests/phpunit/tests/dependencies/scripts.php	(revision 91b3164ee5950c9716e043fee22146e0269d4edd)
+++ tests/phpunit/tests/dependencies/scripts.php	(date 1517499111000)
@@ -735,7 +735,7 @@
 	 * Testing `wp_enqueue_code_editor` with file path.
 	 *
 	 * @ticket 41871
-	 * @covers wp_enqueue_code_editor()
+	 * @covers ::wp_enqueue_code_editor()
 	 */
 	public function test_wp_enqueue_code_editor_when_php_file_will_be_passed() {
 		$real_file              = WP_PLUGIN_DIR . '/hello.php';
@@ -822,7 +822,7 @@
 	 * Testing `wp_enqueue_code_editor` with `compact`.
 	 *
 	 * @ticket 41871
-	 * @covers wp_enqueue_code_editor()
+	 * @covers ::wp_enqueue_code_editor()
 	 */
 	public function test_wp_enqueue_code_editor_when_generated_array_by_compact_will_be_passed() {
 		$wp_enqueue_code_editor = wp_enqueue_code_editor( compact( 'file' ) );
@@ -904,7 +904,7 @@
 	 * Testing `wp_enqueue_code_editor` with `array_merge`.
 	 *
 	 * @ticket 41871
-	 * @covers wp_enqueue_code_editor()
+	 * @covers ::wp_enqueue_code_editor()
 	 */
 	public function test_wp_enqueue_code_editor_when_generated_array_by_array_merge_will_be_passed() {
 		$wp_enqueue_code_editor = wp_enqueue_code_editor(
@@ -1001,7 +1001,7 @@
 	 * Testing `wp_enqueue_code_editor` with `array`.
 	 *
 	 * @ticket 41871
-	 * @covers wp_enqueue_code_editor()
+	 * @covers ::wp_enqueue_code_editor()
 	 */
 	public function test_wp_enqueue_code_editor_when_simple_array_will_be_passed() {
 		$wp_enqueue_code_editor = wp_enqueue_code_editor(
Index: tests/phpunit/tests/formatting/Autop.php
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- tests/phpunit/tests/formatting/Autop.php	(revision 91b3164ee5950c9716e043fee22146e0269d4edd)
+++ tests/phpunit/tests/formatting/Autop.php	(date 1517499111000)
@@ -539,7 +539,7 @@
 	 * wpautop() should not add extra </p> before <figcaption>
 	 *
 	 * @covers ::wpautop
-	 * @uses trim
+	 * @uses ::trim
 	 *
 	 * @ticket 39307
 	 */
Index: tests/phpunit/tests/general/wpError.php
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- tests/phpunit/tests/general/wpError.php	(revision 91b3164ee5950c9716e043fee22146e0269d4edd)
+++ tests/phpunit/tests/general/wpError.php	(date 1517499111000)
@@ -168,14 +168,14 @@
 	}
 
 	/**
-	 * @covers WP_Error:get_error_code()
+	 * @covers WP_Error::get_error_code()
 	 */
 	public function test_get_error_code_with_no_errors_should_return_an_empty_string() {
 		$this->assertSame( '', $this->WP_Error->get_error_code() );
 	}
 
 	/**
-	 * @covers WP_Error:get_error_code()
+	 * @covers WP_Error::get_error_code()
 	 */
 	public function test_get_error_code_with_one_error_should_return_that_error_code() {
 		$this->WP_Error->add( 'code', 'message' );
@@ -184,7 +184,7 @@
 	}
 
 	/**
-	 * @covers WP_Error:get_error_code()
+	 * @covers WP_Error::get_error_code()
 	 */
 	public function test_get_error_code_with_multiple_errors_should_return_only_the_first_error_code() {
 		$this->WP_Error->add( 'code', 'message' );
Index: tests/phpunit/tests/menu/nav-menu.php
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- tests/phpunit/tests/menu/nav-menu.php	(revision 91b3164ee5950c9716e043fee22146e0269d4edd)
+++ tests/phpunit/tests/menu/nav-menu.php	(date 1517499111000)
@@ -31,7 +31,7 @@
 	/**
 	 * Two themes with one location each should just map, switching to a theme not previously-active.
 	 *
-	 * @covers wp_map_nav_menu_locations()
+	 * @covers ::wp_map_nav_menu_locations()
 	 */
 	function test_one_location_each() {
 		$this->register_nav_menu_locations( array( 'primary' ) );
@@ -50,7 +50,7 @@
 	/**
 	 * Only registered locations should be mapped and returned.
 	 *
-	 * @covers wp_map_nav_menu_locations()
+	 * @covers ::wp_map_nav_menu_locations()
 	 */
 	function test_filter_registered_locations() {
 		$this->register_nav_menu_locations( array( 'primary', 'secondary' ) );
@@ -71,7 +71,7 @@
 	/**
 	 * Locations with the same name should map, switching to a theme not previously-active.
 	 *
-	 * @covers wp_map_nav_menu_locations()
+	 * @covers ::wp_map_nav_menu_locations()
 	 */
 	function test_locations_with_same_slug() {
 		$this->register_nav_menu_locations( array( 'primary', 'secondary' ) );
@@ -90,7 +90,7 @@
 	/**
 	 * If the new theme was previously active, we should honor any changes to nav menu mapping done when the other theme was active.
 	 *
-	 * @covers wp_map_nav_menu_locations()
+	 * @covers ::wp_map_nav_menu_locations()
 	 */
 	function test_new_theme_previously_active() {
 		$this->register_nav_menu_locations( array( 'primary' ) );
@@ -114,7 +114,7 @@
 	/**
 	 * Make educated guesses on theme locations.
 	 *
-	 * @covers wp_map_nav_menu_locations()
+	 * @covers ::wp_map_nav_menu_locations()
 	 */
 	function test_location_guessing() {
 		$this->register_nav_menu_locations( array( 'primary', 'secondary' ) );
@@ -137,7 +137,7 @@
 	/**
 	 * Make sure two locations that fall in the same group don't get the same menu assigned.
 	 *
-	 * @covers wp_map_nav_menu_locations()
+	 * @covers ::wp_map_nav_menu_locations()
 	 */
 	function test_location_guessing_one_menu_per_group() {
 		$this->register_nav_menu_locations( array( 'primary' ) );
@@ -158,7 +158,7 @@
 	/**
 	 * Make sure two locations that fall in the same group get menus assigned from the same group.
 	 *
-	 * @covers wp_map_nav_menu_locations()
+	 * @covers ::wp_map_nav_menu_locations()
 	 */
 	function test_location_guessing_one_menu_per_location() {
 		$this->register_nav_menu_locations( array( 'primary', 'main' ) );
@@ -181,7 +181,7 @@
 	/**
 	 * Technically possible to register menu locations numerically.
 	 *
-	 * @covers wp_map_nav_menu_locations()
+	 * @covers ::wp_map_nav_menu_locations()
 	 */
 	function test_numerical_locations() {
 		$this->register_nav_menu_locations( array( 'primary', 1 ) );
Index: tests/phpunit/tests/option/sanitize-option.php
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- tests/phpunit/tests/option/sanitize-option.php	(revision 91b3164ee5950c9716e043fee22146e0269d4edd)
+++ tests/phpunit/tests/option/sanitize-option.php	(date 1517499111000)
@@ -162,7 +162,7 @@
 	 * Test calling get_settings_errors() with variations on where it gets errors from.
 	 *
 	 * @ticket 42498
-	 * @covers get_settings_errors()
+	 * @covers ::get_settings_errors()
 	 * @global array $wp_settings_errors
 	 */
 	public function test_get_settings_errors_sources() {
Index: tests/phpunit/tests/post/nav-menu.php
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- tests/phpunit/tests/post/nav-menu.php	(revision 91b3164ee5950c9716e043fee22146e0269d4edd)
+++ tests/phpunit/tests/post/nav-menu.php	(date 1517499111000)
@@ -630,7 +630,7 @@
 	/**
 	 * Test _wp_delete_customize_changeset_dependent_auto_drafts.
 	 *
-	 * @covers _wp_delete_customize_changeset_dependent_auto_drafts()
+	 * @covers ::_wp_delete_customize_changeset_dependent_auto_drafts()
 	 */
 	function test_wp_delete_customize_changeset_dependent_auto_drafts() {
 		$auto_draft_post_id = $this->factory()->post->create(
Index: tests/phpunit/tests/theme.php
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- tests/phpunit/tests/theme.php	(revision 91b3164ee5950c9716e043fee22146e0269d4edd)
+++ tests/phpunit/tests/theme.php	(date 1517499111000)
@@ -320,7 +320,7 @@
 	/**
 	 * Test _wp_keep_alive_customize_changeset_dependent_auto_drafts.
 	 *
-	 * @covers _wp_keep_alive_customize_changeset_dependent_auto_drafts()
+	 * @covers ::_wp_keep_alive_customize_changeset_dependent_auto_drafts()
 	 */
 	function test_wp_keep_alive_customize_changeset_dependent_auto_drafts() {
 		$nav_created_post_ids = $this->factory()->post->create_many(
Index: tests/phpunit/tests/widgets.php
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- tests/phpunit/tests/widgets.php	(revision 91b3164ee5950c9716e043fee22146e0269d4edd)
+++ tests/phpunit/tests/widgets.php	(date 1517499111000)
@@ -723,7 +723,7 @@
 	/**
 	 * Tests for when 'sidebars_widgets' theme mod is populated.
 	 *
-	 * @covers retrieve_widgets()
+	 * @covers ::retrieve_widgets()
 	 */
 	function test_retrieve_widgets_with_theme_mod() {
 		global $sidebars_widgets, $_wp_sidebars_widgets;
@@ -786,7 +786,7 @@
 	/**
 	 * Tests for when sidebars widgets matches registered sidebars.
 	 *
-	 * @covers retrieve_widgets()
+	 * @covers ::retrieve_widgets()
 	 */
 	function test_retrieve_widgets_with_sidebars_widgets_matching_registered_sidebars() {
 		global $sidebars_widgets;
@@ -824,7 +824,7 @@
 	/**
 	 * Tests for when sidebars widgets doesn't match registered sidebars.
 	 *
-	 * @covers retrieve_widgets()
+	 * @covers ::retrieve_widgets()
 	 */
 	function test_retrieve_widgets_with_sidebars_widgets_not_matching_registered_sidebars() {
 		global $sidebars_widgets, $_wp_sidebars_widgets;
@@ -918,7 +918,7 @@
 	/**
 	 * Tests for Customizer mode.
 	 *
-	 * @covers retrieve_widgets()
+	 * @covers ::retrieve_widgets()
 	 */
 	function test_retrieve_widgets_for_customizer() {
 		global $sidebars_widgets, $_wp_sidebars_widgets;
@@ -990,7 +990,7 @@
 	/**
 	 * Tests for orphaned widgets being moved into inactive widgets.
 	 *
-	 * @covers retrieve_widgets()
+	 * @covers ::retrieve_widgets()
 	 */
 	function test_retrieve_widgets_move_orphaned_widgets_to_inactive() {
 		global $sidebars_widgets;
@@ -1025,7 +1025,7 @@
 	/**
 	 * Test _wp_remove_unregistered_widgets.
 	 *
-	 * @covers _wp_remove_unregistered_widgets()
+	 * @covers ::_wp_remove_unregistered_widgets()
 	 */
 	public function test__wp_remove_unregistered_widgets() {
 		$widgets = array(
@@ -1055,7 +1055,7 @@
 	/**
 	 * Two themes with one sidebar each should just map, switching to a theme not previously-active.
 	 *
-	 * @covers wp_map_sidebars_widgets()
+	 * @covers ::wp_map_sidebars_widgets()
 	 */
 	public function test_one_sidebar_each() {
 		$this->register_sidebars( array( 'primary' ) );
@@ -1075,7 +1075,7 @@
 	/**
 	 * Sidebars with the same name should map, switching to a theme not previously-active.
 	 *
-	 * @covers wp_map_sidebars_widgets()
+	 * @covers ::wp_map_sidebars_widgets()
 	 */
 	public function test_sidebars_with_same_slug() {
 		$this->register_sidebars( array( 'primary', 'secondary' ) );
@@ -1093,7 +1093,7 @@
 	/**
 	 * Make educated guesses on theme sidebars.
 	 *
-	 * @covers wp_map_sidebars_widgets()
+	 * @covers ::wp_map_sidebars_widgets()
 	 */
 	public function test_sidebar_guessing() {
 		$this->register_sidebars( array( 'primary', 'secondary' ) );
@@ -1116,7 +1116,7 @@
 	/**
 	 * Make sure two sidebars that fall in the same group don't get the same menu assigned.
 	 *
-	 * @covers wp_map_sidebars_widgets()
+	 * @covers ::wp_map_sidebars_widgets()
 	 */
 	public function test_sidebar_guessing_one_menu_per_group() {
 		$this->register_sidebars( array( 'primary' ) );
@@ -1137,7 +1137,7 @@
 	/**
 	 * Make sure two sidebars that fall in the same group get menus assigned from the same group.
 	 *
-	 * @covers wp_map_sidebars_widgets()
+	 * @covers ::wp_map_sidebars_widgets()
 	 */
 	public function test_sidebar_guessing_one_menu_per_sidebar() {
 		$this->register_sidebars( array( 'primary', 'main' ) );
