Index: hooks/addFilter.php
===================================================================
--- hooks/addFilter.php	(revision 48942)
+++ hooks/addFilter.php	(working copy)
@@ -9,7 +9,10 @@
 class Tests_WP_Hook_Add_Filter extends WP_UnitTestCase {
 
 	public $hook;
-
+	
+	/*
+	* @covers WP_Hook::add_filter
+	*/
 	public function test_add_filter_with_function() {
 		$callback      = '__return_null';
 		$hook          = new WP_Hook();
@@ -23,7 +26,10 @@
 		$this->assertSame( $callback, $hook->callbacks[ $priority ][ $function_index ]['function'] );
 		$this->assertSame( $accepted_args, $hook->callbacks[ $priority ][ $function_index ]['accepted_args'] );
 	}
-
+	
+	/*
+	* @covers WP_Hook::add_filter
+	*/
 	public function test_add_filter_with_object() {
 		$a             = new MockAction();
 		$callback      = array( $a, 'action' );
@@ -38,7 +44,10 @@
 		$this->assertSame( $callback, $hook->callbacks[ $priority ][ $function_index ]['function'] );
 		$this->assertSame( $accepted_args, $hook->callbacks[ $priority ][ $function_index ]['accepted_args'] );
 	}
-
+	
+	/*
+	* @covers WP_Hook::add_filter
+	*/
 	public function test_add_filter_with_static_method() {
 		$callback      = array( 'MockAction', 'action' );
 		$hook          = new WP_Hook();
@@ -52,7 +61,10 @@
 		$this->assertSame( $callback, $hook->callbacks[ $priority ][ $function_index ]['function'] );
 		$this->assertSame( $accepted_args, $hook->callbacks[ $priority ][ $function_index ]['accepted_args'] );
 	}
-
+	
+	/*
+	* @covers WP_Hook::add_filter
+	*/
 	public function test_add_two_filters_with_same_priority() {
 		$callback_one  = '__return_null';
 		$callback_two  = '__return_false';
@@ -67,7 +79,10 @@
 		$hook->add_filter( $tag, $callback_two, $priority, $accepted_args );
 		$this->assertCount( 2, $hook->callbacks[ $priority ] );
 	}
-
+	
+	/*
+	* @covers WP_Hook::add_filter
+	*/
 	public function test_add_two_filters_with_different_priority() {
 		$callback_one  = '__return_null';
 		$callback_two  = '__return_false';
@@ -83,7 +98,10 @@
 		$this->assertCount( 1, $hook->callbacks[ $priority ] );
 		$this->assertCount( 1, $hook->callbacks[ $priority + 1 ] );
 	}
-
+	
+	/*
+	* @covers WP_Hook::add_filter
+	*/
 	public function test_readd_filter() {
 		$callback      = '__return_null';
 		$hook          = new WP_Hook();
@@ -97,7 +115,10 @@
 		$hook->add_filter( $tag, $callback, $priority, $accepted_args );
 		$this->assertCount( 1, $hook->callbacks[ $priority ] );
 	}
-
+	
+	/*
+	* @covers WP_Hook::add_filter
+	*/
 	public function test_readd_filter_with_different_priority() {
 		$callback      = '__return_null';
 		$hook          = new WP_Hook();
@@ -112,7 +133,10 @@
 		$this->assertCount( 1, $hook->callbacks[ $priority ] );
 		$this->assertCount( 1, $hook->callbacks[ $priority + 1 ] );
 	}
-
+	
+	/*
+	* @covers WP_Hook::add_filter
+	*/
 	public function test_sort_after_add_filter() {
 		$a    = new MockAction();
 		$b    = new MockAction();
@@ -126,7 +150,10 @@
 
 		$this->assertSame( array( 5, 8, 10 ), array_keys( $hook->callbacks ) );
 	}
-
+	
+	/*
+	* @covers WP_Hook::add_filter
+	*/
 	public function test_remove_and_add() {
 		$this->hook = new Wp_Hook();
 
@@ -140,7 +167,10 @@
 
 		$this->assertSame( '24', $value );
 	}
-
+	
+	/*
+	* @covers WP_Hook::add_filter
+	*/
 	public function test_remove_and_add_last_filter() {
 		$this->hook = new Wp_Hook();
 
@@ -154,7 +184,10 @@
 
 		$this->assertSame( '12', $value );
 	}
-
+	
+	/*
+	* @covers WP_Hook::add_filter
+	*/
 	public function test_remove_and_recurse_and_add() {
 		$this->hook = new Wp_Hook();
 
@@ -199,7 +232,10 @@
 	public function _filter_remove_and_add4( $string ) {
 		return $string . '4';
 	}
-
+	
+	/*
+	* @covers WP_Hook::do_action
+	*/
 	public function test_remove_and_add_action() {
 		$this->hook          = new Wp_Hook();
 		$this->action_output = '';
@@ -214,7 +250,10 @@
 
 		$this->assertSame( '24', $this->action_output );
 	}
-
+	
+	/*
+	* @covers WP_Hook::do_action
+	*/
 	public function test_remove_and_add_last_action() {
 		$this->hook          = new Wp_Hook();
 		$this->action_output = '';
@@ -229,7 +268,10 @@
 
 		$this->assertSame( '12', $this->action_output );
 	}
-
+	
+	/*
+	* @covers WP_Hook::do_action
+	*/
 	public function test_remove_and_recurse_and_add_action() {
 		$this->hook          = new Wp_Hook();
 		$this->action_output = '';
Index: hooks/applyFilters.php
===================================================================
--- hooks/applyFilters.php	(revision 48942)
+++ hooks/applyFilters.php	(working copy)
@@ -23,7 +23,10 @@
 		$this->assertSame( $returned, $arg );
 		$this->assertSame( 1, $a->get_call_count() );
 	}
-
+	
+	/*
+	* @covers WP_Hook::apply_filters
+	*/
 	public function test_apply_filters_with_multiple_calls() {
 		$a             = new MockAction();
 		$callback      = array( $a, 'filter' );
Index: hooks/doAction.php
===================================================================
--- hooks/doAction.php	(revision 48942)
+++ hooks/doAction.php	(working copy)
@@ -14,7 +14,10 @@
 		parent::setUp();
 		$this->events = array();
 	}
-
+	
+	/*
+	* @covers WP_Hook::do_action
+	*/
 	public function test_do_action_with_callback() {
 		$a             = new MockAction();
 		$callback      = array( $a, 'action' );
@@ -29,7 +32,10 @@
 
 		$this->assertSame( 1, $a->get_call_count() );
 	}
-
+	
+	/*
+	* @covers WP_Hook::do_action
+	*/
 	public function test_do_action_with_multiple_calls() {
 		$a             = new MockAction();
 		$callback      = array( $a, 'filter' );
@@ -45,7 +51,10 @@
 
 		$this->assertSame( 2, $a->get_call_count() );
 	}
-
+	
+	/*
+	* @covers WP_Hook::do_action
+	*/
 	public function test_do_action_with_multiple_callbacks_on_same_priority() {
 		$a             = new MockAction();
 		$b             = new MockAction();
@@ -64,7 +73,10 @@
 		$this->assertSame( 1, $a->get_call_count() );
 		$this->assertSame( 1, $a->get_call_count() );
 	}
-
+	
+	/*
+	* @covers WP_Hook::do_action
+	*/
 	public function test_do_action_with_multiple_callbacks_on_different_priorities() {
 		$a             = new MockAction();
 		$b             = new MockAction();
@@ -83,7 +95,10 @@
 		$this->assertSame( 1, $a->get_call_count() );
 		$this->assertSame( 1, $a->get_call_count() );
 	}
-
+	
+	/*
+	* @covers WP_Hook::do_action
+	*/
 	public function test_do_action_with_no_accepted_args() {
 		$callback      = array( $this, '_action_callback' );
 		$hook          = new WP_Hook();
@@ -97,7 +112,10 @@
 
 		$this->assertEmpty( $this->events[0]['args'] );
 	}
-
+	
+	/*
+	* @covers WP_Hook::do_action
+	*/
 	public function test_do_action_with_one_accepted_arg() {
 		$callback      = array( $this, '_action_callback' );
 		$hook          = new WP_Hook();
@@ -111,7 +129,10 @@
 
 		$this->assertCount( 1, $this->events[0]['args'] );
 	}
-
+	
+	/*
+	* @covers WP_Hook::do_action
+	*/
 	public function test_do_action_with_more_accepted_args() {
 		$callback      = array( $this, '_action_callback' );
 		$hook          = new WP_Hook();
@@ -125,7 +146,10 @@
 
 		$this->assertCount( 1, $this->events[0]['args'] );
 	}
-
+	
+	/*
+	* @covers WP_Hook::do_action
+	*/
 	public function test_do_action_doesnt_change_value() {
 		$this->hook          = new WP_Hook();
 		$this->action_output = '';
@@ -138,7 +162,7 @@
 
 		$this->assertSame( 'a1-b1b3-a2a3', $this->action_output );
 	}
-
+	
 	public function _filter_do_action_doesnt_change_value1( $value ) {
 		$this->action_output .= $value . 1;
 		return 'x1';
Index: hooks/doAllHook.php
===================================================================
--- hooks/doAllHook.php	(revision 48942)
+++ hooks/doAllHook.php	(working copy)
@@ -6,7 +6,10 @@
  * @group hooks
  */
 class Tests_WP_Hook_Do_All_Hook extends WP_UnitTestCase {
-
+	
+	/*
+	* @covers WP_Hook::do_all_hook
+	*/
 	public function test_do_all_hook_with_multiple_calls() {
 		$a             = new MockAction();
 		$callback      = array( $a, 'action' );
Index: hooks/hasFilter.php
===================================================================
--- hooks/hasFilter.php	(revision 48942)
+++ hooks/hasFilter.php	(working copy)
@@ -6,7 +6,10 @@
  * @group hooks
  */
 class Tests_WP_Hook_Has_Filter extends WP_UnitTestCase {
-
+	
+	/*
+	* @covers WP_Hook::has_filter
+	*/
 	public function test_has_filter_with_function() {
 		$callback      = '__return_null';
 		$hook          = new WP_Hook();
@@ -18,7 +21,10 @@
 
 		$this->assertSame( $priority, $hook->has_filter( $tag, $callback ) );
 	}
-
+	
+	/*
+	* @covers WP_Hook::has_filter
+	*/
 	public function test_has_filter_with_object() {
 		$a             = new MockAction();
 		$callback      = array( $a, 'action' );
@@ -31,7 +37,10 @@
 
 		$this->assertSame( $priority, $hook->has_filter( $tag, $callback ) );
 	}
-
+	
+	/*
+	* @covers WP_Hook::has_filter
+	*/
 	public function test_has_filter_with_static_method() {
 		$callback      = array( 'MockAction', 'action' );
 		$hook          = new WP_Hook();
@@ -43,7 +52,10 @@
 
 		$this->assertSame( $priority, $hook->has_filter( $tag, $callback ) );
 	}
-
+	
+	/*
+	* @covers WP_Hook::has_filter
+	*/
 	public function test_has_filter_without_callback() {
 		$callback      = '__return_null';
 		$hook          = new WP_Hook();
@@ -55,12 +67,18 @@
 
 		$this->assertTrue( $hook->has_filter() );
 	}
-
+	
+	/*
+	* @covers WP_Hook::has_filter
+	*/
 	public function test_not_has_filter_without_callback() {
 		$hook = new WP_Hook();
 		$this->assertFalse( $hook->has_filter() );
 	}
-
+	
+	/*
+	* @covers WP_Hook::has_filter
+	*/
 	public function test_not_has_filter_with_callback() {
 		$callback = '__return_null';
 		$hook     = new WP_Hook();
@@ -68,7 +86,10 @@
 
 		$this->assertFalse( $hook->has_filter( $tag, $callback ) );
 	}
-
+	
+	/*
+	* @covers WP_Hook::has_filter
+	*/
 	public function test_has_filter_with_wrong_callback() {
 		$callback      = '__return_null';
 		$hook          = new WP_Hook();
Index: hooks/hasFilters.php
===================================================================
--- hooks/hasFilters.php	(revision 48942)
+++ hooks/hasFilters.php	(working copy)
@@ -6,7 +6,10 @@
  * @group hooks
  */
 class Tests_WP_Hook_Has_Filters extends WP_UnitTestCase {
-
+	
+	/*
+	* @covers WP_Hook::has_filters
+	*/
 	public function test_has_filters_with_callback() {
 		$callback      = '__return_null';
 		$hook          = new WP_Hook();
@@ -18,12 +21,18 @@
 
 		$this->assertTrue( $hook->has_filters() );
 	}
-
+	
+	/*
+	* @covers WP_Hook::has_filters
+	*/
 	public function test_has_filters_without_callback() {
 		$hook = new WP_Hook();
 		$this->assertFalse( $hook->has_filters() );
 	}
-
+	
+	/*
+	* @covers WP_Hook::has_filters
+	*/
 	public function test_not_has_filters_with_removed_callback() {
 		$callback      = '__return_null';
 		$hook          = new WP_Hook();
@@ -35,7 +44,10 @@
 		$hook->remove_filter( $tag, $callback, $priority );
 		$this->assertFalse( $hook->has_filters() );
 	}
-
+	
+	/*
+	* @covers WP_Hook::has_filters
+	*/
 	public function test_not_has_filter_with_directly_removed_callback() {
 		$callback      = '__return_null';
 		$hook          = new WP_Hook();
Index: hooks/iterator.php
===================================================================
--- hooks/iterator.php	(revision 48942)
+++ hooks/iterator.php	(working copy)
@@ -6,7 +6,10 @@
  * @group hooks
  */
 class Tests_WP_Hook_Iterator extends WP_UnitTestCase {
-
+	
+	/*
+	* @covers WP_Hook::add_filter
+	*/
 	public function test_foreach() {
 		$callback_one  = '__return_null';
 		$callback_two  = '__return_false';
Index: hooks/preinitHooks.php
===================================================================
--- hooks/preinitHooks.php	(revision 48942)
+++ hooks/preinitHooks.php	(working copy)
@@ -6,7 +6,10 @@
  * @group hooks
  */
 class Tests_WP_Hook_Preinit_Hooks extends WP_UnitTestCase {
-
+	
+	/*
+	* @covers WP_Hook::build_preinitialized_hooks
+	*/
 	public function test_array_to_hooks() {
 		$tag1      = __FUNCTION__ . '_1';
 		$priority1 = rand( 1, 100 );
Index: hooks/removeAllFilters.php
===================================================================
--- hooks/removeAllFilters.php	(revision 48942)
+++ hooks/removeAllFilters.php	(working copy)
@@ -6,7 +6,11 @@
  * @group hooks
  */
 class Tests_WP_Hook_Remove_All_Filters extends WP_UnitTestCase {
-
+	
+	/*
+	* @covers WP_Hook::remove_all_filters
+	* @covers WP_Hook::has_filters
+	*/
 	public function test_remove_all_filters() {
 		$callback      = '__return_null';
 		$hook          = new WP_Hook();
@@ -20,7 +24,11 @@
 
 		$this->assertFalse( $hook->has_filters() );
 	}
-
+	
+	/*
+	* @covers WP_Hook::remove_all_filters
+	* @covers WP_Hook::has_filter
+	*/
 	public function test_remove_all_filters_with_priority() {
 		$callback_one  = '__return_null';
 		$callback_two  = '__return_false';
Index: hooks/removeFilter.php
===================================================================
--- hooks/removeFilter.php	(revision 48942)
+++ hooks/removeFilter.php	(working copy)
@@ -6,7 +6,10 @@
  * @group hooks
  */
 class Tests_WP_Hook_Remove_Filter extends WP_UnitTestCase {
-
+	
+	/*
+	* @covers WP_Hook::remove_filter
+	*/
 	public function test_remove_filter_with_function() {
 		$callback      = '__return_null';
 		$hook          = new WP_Hook();
@@ -19,7 +22,10 @@
 
 		$this->assertFalse( isset( $hook->callbacks[ $priority ] ) );
 	}
-
+	
+	/*
+	* @covers WP_Hook::remove_filter
+	*/
 	public function test_remove_filter_with_object() {
 		$a             = new MockAction();
 		$callback      = array( $a, 'action' );
@@ -33,7 +39,10 @@
 
 		$this->assertFalse( isset( $hook->callbacks[ $priority ] ) );
 	}
-
+	
+	/*
+	* @covers WP_Hook::remove_filter
+	*/
 	public function test_remove_filter_with_static_method() {
 		$callback      = array( 'MockAction', 'action' );
 		$hook          = new WP_Hook();
@@ -46,7 +55,10 @@
 
 		$this->assertFalse( isset( $hook->callbacks[ $priority ] ) );
 	}
-
+	
+	/*
+	* @covers WP_Hook::remove_filter
+	*/
 	public function test_remove_filters_with_another_at_same_priority() {
 		$callback_one  = '__return_null';
 		$callback_two  = '__return_false';
@@ -62,7 +74,10 @@
 
 		$this->assertCount( 1, $hook->callbacks[ $priority ] );
 	}
-
+	
+	/*
+	* @covers WP_Hook::remove_filter
+	*/
 	public function test_remove_filter_with_another_at_different_priority() {
 		$callback_one  = '__return_null';
 		$callback_two  = '__return_false';
Index: http/base.php
===================================================================
--- http/base.php	(revision 48942)
+++ http/base.php	(working copy)
@@ -50,7 +50,10 @@
 		$this->http_request_args = $args;
 		return $args;
 	}
-
+	
+	/*
+	* @covers ::wp_remote_request
+	*/
 	function test_redirect_on_301() {
 		// 5 : 5 & 301.
 		$res = wp_remote_request( $this->redirection_script . '?code=301&rt=' . 5, array( 'redirection' => 5 ) );
@@ -59,7 +62,10 @@
 		$this->assertNotWPError( $res );
 		$this->assertSame( 200, (int) $res['response']['code'] );
 	}
-
+	
+	/*
+	* @covers ::wp_remote_request
+	*/
 	function test_redirect_on_302() {
 		// 5 : 5 & 302.
 		$res = wp_remote_request( $this->redirection_script . '?code=302&rt=' . 5, array( 'redirection' => 5 ) );
@@ -71,6 +77,8 @@
 
 	/**
 	 * @ticket 16855
+	 * 
+	 * @covers ::wp_remote_request
 	 */
 	function test_redirect_on_301_no_redirect() {
 		// 5 > 0 & 301.
@@ -83,6 +91,8 @@
 
 	/**
 	 * @ticket 16855
+	 * 
+	 * @covers ::wp_remote_request
 	 */
 	function test_redirect_on_302_no_redirect() {
 		// 5 > 0 & 302.
@@ -92,7 +102,10 @@
 		$this->assertNotWPError( $res );
 		$this->assertSame( 302, (int) $res['response']['code'] );
 	}
-
+	
+	/**
+	 * @covers ::wp_remote_request
+	 */
 	function test_redirections_equal() {
 		// 5 - 5.
 		$res = wp_remote_request( $this->redirection_script . '?rt=' . 5, array( 'redirection' => 5 ) );
@@ -101,7 +114,10 @@
 		$this->assertNotWPError( $res );
 		$this->assertSame( 200, (int) $res['response']['code'] );
 	}
-
+	
+	/**
+	 * @covers ::wp_remote_request
+	 */
 	function test_no_head_redirections() {
 		// No redirections on HEAD request.
 		$res = wp_remote_request( $this->redirection_script . '?code=302&rt=' . 1, array( 'method' => 'HEAD' ) );
@@ -113,6 +129,8 @@
 
 	/**
 	 * @ticket 16855
+	 *
+	 * @covers ::wp_remote_request
 	 */
 	function test_redirect_on_head() {
 		// Redirections on HEAD request when Requested.
@@ -128,7 +146,10 @@
 		$this->assertNotWPError( $res );
 		$this->assertSame( 200, (int) $res['response']['code'] );
 	}
-
+	
+	/**
+	 * @covers ::wp_remote_request
+	 */
 	function test_redirections_greater() {
 		// 10 > 5.
 		$res = wp_remote_request( $this->redirection_script . '?rt=' . 10, array( 'redirection' => 5 ) );
@@ -136,7 +157,10 @@
 		$this->skipTestOnTimeout( $res );
 		$this->assertWPError( $res );
 	}
-
+	
+	/**
+	 * @covers ::wp_remote_request
+	 */
 	function test_redirections_greater_edgecase() {
 		// 6 > 5 (close edge case).
 		$res = wp_remote_request( $this->redirection_script . '?rt=' . 6, array( 'redirection' => 5 ) );
@@ -144,7 +168,10 @@
 		$this->skipTestOnTimeout( $res );
 		$this->assertWPError( $res );
 	}
-
+	
+	/**
+	 * @covers ::wp_remote_request
+	 */
 	function test_redirections_less_edgecase() {
 		// 4 < 5 (close edge case).
 		$res = wp_remote_request( $this->redirection_script . '?rt=' . 4, array( 'redirection' => 5 ) );
@@ -155,6 +182,8 @@
 
 	/**
 	 * @ticket 16855
+	 *
+	 * @covers ::wp_remote_request
 	 */
 	function test_redirections_zero_redirections_specified() {
 		// 0 redirections asked for, should return the document?
@@ -169,6 +198,8 @@
 	 * Do not redirect on non 3xx status codes.
 	 *
 	 * @ticket 16889
+	 *
+	 * @covers ::wp_remote_request
 	 */
 	function test_location_header_on_201() {
 		// Prints PASS on initial load, FAIL if the client follows the specified redirection.
@@ -183,6 +214,9 @@
 	 * Test handling of PUT requests on redirects.
 	 *
 	 * @ticket 16889
+	 *
+	 * @covers ::wp_remote_request
+	 * @covers ::wp_remote_retrieve_body
 	 */
 	function test_no_redirection_on_PUT() {
 		$url = 'http://api.wordpress.org/core/tests/1.0/redirection.php?201-location=1';
@@ -203,6 +237,8 @@
 
 	/**
 	 * @ticket 11888
+	 *
+	 * @covers ::wp_remote_request
 	 */
 	function test_send_headers() {
 		// Test that the headers sent are received by the server.
@@ -232,7 +268,12 @@
 		// Should it be that empty headers with empty values are NOT sent?
 		// $this->assertTrue( isset( $headers['test3'] ) && '' === $headers['test3'] );
 	}
-
+	
+	/**
+	 * @ticket 11888
+	 *
+	 * @covers ::wp_remote_request
+	 */
 	function test_file_stream() {
 		$url  = $this->file_stream_url;
 		$size = 153204;
@@ -260,6 +301,8 @@
 
 	/**
 	 * @ticket 26726
+	 *
+	 * @covers ::wp_remote_request
 	 */
 	function test_file_stream_limited_size() {
 		$url  = $this->file_stream_url;
@@ -289,6 +332,8 @@
 	 * Tests limiting the response size when returning strings.
 	 *
 	 * @ticket 31172
+	 *
+	 * @covers ::wp_remote_request
 	 */
 	function test_request_limited_size() {
 		$url  = $this->file_stream_url;
@@ -313,6 +358,9 @@
 	 * @dataProvider data_post_redirect_to_method_300
 	 *
 	 * @ticket 17588
+	 *
+	 * @covers ::wp_remote_post
+	 * @covers ::wp_remote_retrieve_body
 	 */
 	function test_post_redirect_to_method_300( $response_code, $method ) {
 		$url = 'http://api.wordpress.org/core/tests/1.0/redirection.php?post-redirect-to-method=1';
@@ -322,7 +370,7 @@
 		$this->skipTestOnTimeout( $res );
 		$this->assertSame( $method, wp_remote_retrieve_body( $res ) );
 	}
-
+	
 	public function data_post_redirect_to_method_300() {
 		return array(
 			// Test 300 - POST to POST.
@@ -352,6 +400,9 @@
 	 * Test HTTP Requests using an IP URL, with a HOST header specified.
 	 *
 	 * @ticket 24182
+	 *
+	 * @covers ::wp_remote_get
+	 * @covers ::wp_remote_retrieve_body
 	 */
 	function test_ip_url_with_host_header() {
 		$ip   = gethostbyname( 'api.wordpress.org' );
@@ -375,6 +426,8 @@
 	 * Test HTTP requests where SSL verification is disabled but the CA bundle is still populated.
 	 *
 	 * @ticket 33978
+	 *
+	 * @covers ::wp_remote_head
 	 */
 	function test_https_url_without_ssl_verification() {
 		$url  = 'https://wordpress.org/';
@@ -397,6 +450,11 @@
 	 * Test HTTP Redirects with multiple Location headers specified.
 	 *
 	 * @ticket 16890
+	 *
+	 * @covers ::wp_remote_head
+	 * @covers ::wp_remote_retrieve_header
+	 * @covers ::wp_remote_get
+	 * @covers ::wp_remote_retrieve_body
 	 */
 	function test_multiple_location_headers() {
 		$url = 'http://api.wordpress.org/core/tests/1.0/redirection.php?multiple-location-headers=1';
@@ -417,6 +475,9 @@
 	 * Test HTTP Cookie handling.
 	 *
 	 * @ticket 21182
+	 *
+	 * @covers ::wp_remote_get
+	 * @covers ::wp_remote_retrieve_body
 	 */
 	function test_cookie_handling() {
 		$url = 'http://api.wordpress.org/core/tests/1.0/redirection.php?cookie-test=1';
@@ -432,6 +493,8 @@
 	 *
 	 * @group ssl
 	 * @ticket 25007
+	 *
+	 * @covers ::wp_remote_get
 	 */
 	function test_ssl() {
 		if ( ! wp_http_supports( array( 'ssl' ) ) ) {
@@ -446,6 +509,8 @@
 
 	/**
 	 * @ticket 37733
+	 *
+	 * @covers ::wp_remote_request
 	 */
 	function test_url_with_double_slashes_path() {
 		$url = $this->redirection_script . '?rt=' . 0;
Index: http/curl.php
===================================================================
--- http/curl.php	(revision 48942)
+++ http/curl.php	(working copy)
@@ -11,6 +11,8 @@
 
 	/**
 	 * @ticket 39783
+	 *
+	 * @covers ::wp_remote_request
 	 */
 	public function test_http_api_curl_stream_parameter_is_a_reference() {
 		add_action( 'http_api_curl', array( $this, '_action_test_http_api_curl_stream_parameter_is_a_reference' ), 10, 3 );
Index: http/functions.php
===================================================================
--- http/functions.php	(revision 48942)
+++ http/functions.php	(working copy)
@@ -13,7 +13,10 @@
 
 		parent::setUp();
 	}
-
+	
+	/*
+	* @covers ::wp_remote_head
+	*/
 	function test_head_request() {
 		// This URL gives a direct 200 response.
 		$url      = 'https://asdftestblog1.files.wordpress.com/2007/09/2007-06-30-dsc_4700-1.jpg';
@@ -29,7 +32,10 @@
 		$this->assertSame( '40148', $headers['content-length'] );
 		$this->assertSame( 200, wp_remote_retrieve_response_code( $response ) );
 	}
-
+	
+	/*
+	* @covers ::wp_remote_head
+	*/
 	function test_head_redirect() {
 		// This URL will 301 redirect.
 		$url      = 'https://asdftestblog1.wordpress.com/files/2007/09/2007-06-30-dsc_4700-1.jpg';
@@ -38,7 +44,10 @@
 		$this->skipTestOnTimeout( $response );
 		$this->assertSame( 301, wp_remote_retrieve_response_code( $response ) );
 	}
-
+	
+	/*
+	* @covers ::wp_remote_head
+	*/
 	function test_head_404() {
 		$url      = 'https://asdftestblog1.files.wordpress.com/2007/09/awefasdfawef.jpg';
 		$response = wp_remote_head( $url );
@@ -46,7 +55,10 @@
 		$this->skipTestOnTimeout( $response );
 		$this->assertSame( 404, wp_remote_retrieve_response_code( $response ) );
 	}
-
+	
+	/*
+	* @covers ::wp_remote_get
+	*/
 	function test_get_request() {
 		$url = 'https://asdftestblog1.files.wordpress.com/2007/09/2007-06-30-dsc_4700-1.jpg';
 
@@ -63,7 +75,10 @@
 		$this->assertSame( '40148', $headers['content-length'] );
 		$this->assertSame( 200, wp_remote_retrieve_response_code( $response ) );
 	}
-
+	
+	/*
+	* @covers ::wp_remote_get
+	*/
 	function test_get_redirect() {
 		// This will redirect to asdftestblog1.files.wordpress.com.
 		$url = 'https://asdftestblog1.wordpress.com/files/2007/09/2007-06-30-dsc_4700-1.jpg';
@@ -79,7 +94,10 @@
 		$this->assertSame( '40148', $headers['content-length'] );
 		$this->assertSame( 200, wp_remote_retrieve_response_code( $response ) );
 	}
-
+	
+	/*
+	* @covers ::wp_remote_get
+	*/
 	function test_get_redirect_limit_exceeded() {
 		// This will redirect to asdftestblog1.files.wordpress.com.
 		$url = 'https://asdftestblog1.wordpress.com/files/2007/09/2007-06-30-dsc_4700-1.jpg';
@@ -93,6 +111,10 @@
 
 	/**
 	 * @ticket 33711
+	 *
+	 * @covers ::wp_remote_retrieve_cookies
+	 * @covers ::wp_remote_retrieve_cookie
+	 * @covers ::wp_remote_retrieve_cookie_value
 	 */
 	function test_get_response_cookies() {
 		$url = 'https://login.wordpress.org/wp-login.php';
@@ -122,6 +144,10 @@
 
 	/**
 	 * @ticket 37437
+	 *
+	 * @covers ::wp_remote_get
+	 * @covers ::wp_remote_retrieve_cookie
+	 * @covers ::wp_remote_retrieve_cookies
 	 */
 	function test_get_response_cookies_with_wp_http_cookie_object() {
 		$url = 'http://example.org';
@@ -154,6 +180,8 @@
 
 	/**
 	 * @ticket 37437
+	 *
+	 * @covers ::wp_remote_retrieve_cookies
 	 */
 	function test_get_response_cookies_with_name_value_array() {
 		$url = 'http://example.org';
@@ -181,6 +209,10 @@
 
 	/**
 	 * @ticket 43231
+	 *
+	 * @covers ::wp_remote_retrieve_cookie
+	  * @covers ::wp_remote_retrieve_cookies
+	 * @covers WP_Http::normalize_cookies
 	 */
 	function test_get_cookie_host_only() {
 		// Emulate WP_Http::request() internals.
Index: http/getHttpHeaders.php
===================================================================
--- http/getHttpHeaders.php	(revision 48942)
+++ http/getHttpHeaders.php	(working copy)
@@ -27,6 +27,8 @@
 
 	/**
 	 * Test with a valid URL
+	 *
+	 * @covers ::wp_get_http_headers
 	 */
 	public function test_wp_get_http_headers_valid_url() {
 		$result = wp_get_http_headers( 'http://example.com' );
@@ -35,6 +37,8 @@
 
 	/**
 	 * Test with an invalid URL
+	 *
+	 * @covers ::wp_get_http_headers
 	 */
 	public function test_wp_get_http_headers_invalid_url() {
 		$result = wp_get_http_headers( 'not_an_url' );
@@ -43,6 +47,8 @@
 
 	/**
 	 * Test to see if the deprecated argument is working
+	 *
+	 * @covers ::wp_get_http_headers
 	 */
 	public function test_wp_get_http_headers_deprecated_argument() {
 		$this->setExpectedDeprecated( 'wp_get_http_headers' );
Index: http/http.php
===================================================================
--- http/http.php	(revision 48942)
+++ http/http.php	(working copy)
@@ -10,12 +10,14 @@
 
 	/**
 	 * @dataProvider make_absolute_url_testcases
+	 * 
+	 * @covers WP_Http::make_absolute_url
 	 */
 	function test_make_absolute_url( $relative_url, $absolute_url, $expected ) {
 		$actual = WP_Http::make_absolute_url( $relative_url, $absolute_url );
 		$this->assertSame( $expected, $actual );
 	}
-
+	
 	function make_absolute_url_testcases() {
 		// 0: The Location header, 1: The current URL, 3: The expected URL.
 		return array(
@@ -69,12 +71,14 @@
 
 	/**
 	 * @dataProvider parse_url_testcases
+	 * 
+	 * @covers ::wp_parse_url
 	 */
 	function test_wp_parse_url( $url, $expected ) {
 		$actual = wp_parse_url( $url );
 		$this->assertSame( $expected, $actual );
 	}
-
+	
 	function parse_url_testcases() {
 		// 0: The URL, 1: The expected resulting structure.
 		return array(
@@ -180,6 +184,8 @@
 
 	/**
 	 * @ticket 36356
+	 * 
+	 * @covers ::wp_parse_url
 	 */
 	function test_wp_parse_url_with_default_component() {
 		$actual = wp_parse_url( self::FULL_TEST_URL, -1 );
@@ -202,12 +208,15 @@
 	 * @ticket 36356
 	 *
 	 * @dataProvider parse_url_component_testcases
+	 * 
+	 * @covers ::wp_parse_url
 	 */
 	function test_wp_parse_url_with_component( $url, $component, $expected ) {
 		$actual = wp_parse_url( $url, $component );
 		$this->assertSame( $expected, $actual );
 	}
-
+	
+	
 	function parse_url_component_testcases() {
 		// 0: The URL, 1: The requested component, 2: The expected resulting structure.
 		return array(
@@ -261,6 +270,8 @@
 
 	/**
 	 * @ticket 35426
+	 * 
+	 * @covers ReflectionClass::getConstants
 	 */
 	public function test_http_response_code_constants() {
 		global $wp_header_to_desc;
@@ -272,11 +283,12 @@
 		get_status_header_desc( 200 );
 
 		$this->assertSame( array_keys( $wp_header_to_desc ), array_values( $constants ) );
-
 	}
 
 	/**
 	 * @ticket 37768
+	 * 
+	 * @covers WP_Http::normalize_cookies
 	 */
 	public function test_normalize_cookies_scalar_values() {
 		$http = _wp_http_get_object();
@@ -312,6 +324,8 @@
 	 * @ticket 36356
 	 *
 	 * @dataProvider get_component_from_parsed_url_array_testcases
+	 * 
+	 * @covers ::_get_component_from_parsed_url_array
 	 */
 	function test_get_component_from_parsed_url_array( $url, $component, $expected ) {
 		$parts  = wp_parse_url( $url );
@@ -318,7 +332,7 @@
 		$actual = _get_component_from_parsed_url_array( $parts, $component );
 		$this->assertSame( $expected, $actual );
 	}
-
+	
 	function get_component_from_parsed_url_array_testcases() {
 		// 0: A URL, 1: PHP URL constant, 2: The expected result.
 		return array(
@@ -351,6 +365,8 @@
 	 * @ticket 36356
 	 *
 	 * @dataProvider wp_translate_php_url_constant_to_key_testcases
+	 * 
+	 * @covers ::_wp_translate_php_url_constant_to_key
 	 */
 	function test_wp_translate_php_url_constant_to_key( $input, $expected ) {
 		$actual = _wp_translate_php_url_constant_to_key( $input );
Index: http/remoteRetrieveHeaders.php
===================================================================
--- http/remoteRetrieveHeaders.php	(revision 48942)
+++ http/remoteRetrieveHeaders.php	(working copy)
@@ -7,6 +7,8 @@
 
 	/**
 	 * Valid response
+	 * 
+	 * @covers ::wp_remote_retrieve_headers
 	 */
 	function test_remote_retrieve_headers_valid_response() {
 		$headers  = 'headers_data';
@@ -18,6 +20,8 @@
 
 	/**
 	 * Response is a WP_Error
+	 * 
+	 * @covers ::wp_remote_retrieve_headers
 	 */
 	function test_remote_retrieve_headers_is_error() {
 		$response = new WP_Error( 'Some error' );
@@ -28,6 +32,8 @@
 
 	/**
 	 * Response does not contain 'headers'
+	 * 
+	 * @covers ::wp_remote_retrieve_headers
 	 */
 	function test_remote_retrieve_headers_invalid_response() {
 		$response = array( 'no_headers' => 'set' );
