Index: tests/phpunit/tests/query/commentCount.php
===================================================================
--- tests/phpunit/tests/query/commentCount.php	(revision 50532)
+++ tests/phpunit/tests/query/commentCount.php	(working copy)
@@ -1,6 +1,8 @@
 <?php
 /**
  * @group query
+ *
+ * @covers WP_Query
  */
 class Tests_Query_CommentCount extends WP_UnitTestCase {
 	public static $post_ids = array();
Index: tests/phpunit/tests/query/conditionals.php
===================================================================
--- tests/phpunit/tests/query/conditionals.php	(revision 50532)
+++ tests/phpunit/tests/query/conditionals.php	(working copy)
@@ -8,6 +8,8 @@
  *
  * @group query
  * @group rewrite
+ *
+ * @covers WP_Query
  */
 class Tests_Query_Conditionals extends WP_UnitTestCase {
 
Index: tests/phpunit/tests/query/date.php
===================================================================
--- tests/phpunit/tests/query/date.php	(revision 50532)
+++ tests/phpunit/tests/query/date.php	(working copy)
@@ -5,6 +5,8 @@
  *
  * @group query
  * @group date
+ *
+ * @covers WP_Query
  */
 class Tests_Query_Date extends WP_UnitTestCase {
 
Index: tests/phpunit/tests/query/dateQuery.php
===================================================================
--- tests/phpunit/tests/query/dateQuery.php	(revision 50532)
+++ tests/phpunit/tests/query/dateQuery.php	(working copy)
@@ -8,6 +8,8 @@
  * @group query
  * @group date
  * @group datequery
+ *
+ * @covers WP_Query
  */
 class Tests_Query_DateQuery extends WP_UnitTestCase {
 
Index: tests/phpunit/tests/query/generatePostdata.php
===================================================================
--- tests/phpunit/tests/query/generatePostdata.php	(revision 50532)
+++ tests/phpunit/tests/query/generatePostdata.php	(working copy)
@@ -2,6 +2,7 @@
 
 /**
  * @group query
+ *
  * @covers ::generate_postdata
  */
 class Tests_Query_GeneratePostdata extends WP_UnitTestCase {
Index: tests/phpunit/tests/query/invalidQueries.php
===================================================================
--- tests/phpunit/tests/query/invalidQueries.php	(revision 50532)
+++ tests/phpunit/tests/query/invalidQueries.php	(working copy)
@@ -2,6 +2,8 @@
 
 /**
  * @group query
+ *
+ * @covers WP_Query
  */
 class Tests_Query_InvalidQueries extends WP_UnitTestCase {
 
Index: tests/phpunit/tests/query/isTerm.php
===================================================================
--- tests/phpunit/tests/query/isTerm.php	(revision 50532)
+++ tests/phpunit/tests/query/isTerm.php	(working copy)
@@ -9,6 +9,8 @@
  * @group query
  * @group rewrite
  * @group taxonomy
+ *
+ * @covers WP_Query
  */
 class Tests_Query_IsTerm extends WP_UnitTestCase {
 	protected $tag_id;
Index: tests/phpunit/tests/query/metaQuery.php
===================================================================
--- tests/phpunit/tests/query/metaQuery.php	(revision 50532)
+++ tests/phpunit/tests/query/metaQuery.php	(working copy)
@@ -3,6 +3,8 @@
 /**
  * @group query
  * @group meta
+ *
+ * @covers WP_Query
  */
 class Tests_Query_MetaQuery extends WP_UnitTestCase {
 	public function test_meta_query_no_key() {
Index: tests/phpunit/tests/query/noFoundRows.php
===================================================================
--- tests/phpunit/tests/query/noFoundRows.php	(revision 50532)
+++ tests/phpunit/tests/query/noFoundRows.php	(working copy)
@@ -2,6 +2,8 @@
 
 /**
  * @group query
+ *
+ * @covers WP_Query
  */
 class Tests_Query_NoFoundRows extends WP_UnitTestCase {
 	public function test_no_found_rows_default() {
Index: tests/phpunit/tests/query/parseQuery.php
===================================================================
--- tests/phpunit/tests/query/parseQuery.php	(revision 50532)
+++ tests/phpunit/tests/query/parseQuery.php	(working copy)
@@ -2,6 +2,8 @@
 
 /**
  * @group query
+ *
+ * @covers WP_Query
  */
 class Tests_Query_ParseQuery extends WP_UnitTestCase {
 	/**
Index: tests/phpunit/tests/query/postStatus.php
===================================================================
--- tests/phpunit/tests/query/postStatus.php	(revision 50532)
+++ tests/phpunit/tests/query/postStatus.php	(working copy)
@@ -2,6 +2,8 @@
 
 /**
  * @group query
+ *
+ * @covers WP_Query
  */
 class Tests_Query_PostStatus extends WP_UnitTestCase {
 	public static $editor_user_id;
Index: tests/phpunit/tests/query/results.php
===================================================================
--- tests/phpunit/tests/query/results.php	(revision 50532)
+++ tests/phpunit/tests/query/results.php	(working copy)
@@ -5,6 +5,8 @@
  * We're testing against a known data set, so we can check that specific posts are included in the output.
  *
  * @group query
+ *
+ * @covers WP_Query
  */
 class Tests_Query_Results extends WP_UnitTestCase {
 	protected $q;
Index: tests/phpunit/tests/query/search.php
===================================================================
--- tests/phpunit/tests/query/search.php	(revision 50532)
+++ tests/phpunit/tests/query/search.php	(working copy)
@@ -2,6 +2,8 @@
 /**
  * @group query
  * @group search
+ *
+ * @covers WP_Query
  */
 class Tests_Query_Search extends WP_UnitTestCase {
 	protected $q;
Index: tests/phpunit/tests/query/setupPostdata.php
===================================================================
--- tests/phpunit/tests/query/setupPostdata.php	(revision 50532)
+++ tests/phpunit/tests/query/setupPostdata.php	(working copy)
@@ -3,6 +3,8 @@
 /**
  * @group query
  * @covers ::setup_postdata
+ *
+ * @covers WP_Query
  */
 class Tests_Query_SetupPostdata extends WP_UnitTestCase {
 	protected $global_keys = array( 'id', 'authordata', 'currentday', 'currentmonth', 'page', 'pages', 'multipage', 'more', 'numpages' );
Index: tests/phpunit/tests/query/stickies.php
===================================================================
--- tests/phpunit/tests/query/stickies.php	(revision 50532)
+++ tests/phpunit/tests/query/stickies.php	(working copy)
@@ -4,6 +4,8 @@
  * Tests related to sticky functionality in WP_Query.
  *
  * @group query
+ *
+ * @covers WP_Query
  */
 class Tests_Query_Stickies extends WP_UnitTestCase {
 	public static $posts = array();
Index: tests/phpunit/tests/query/taxQuery.php
===================================================================
--- tests/phpunit/tests/query/taxQuery.php	(revision 50532)
+++ tests/phpunit/tests/query/taxQuery.php	(working copy)
@@ -3,6 +3,8 @@
 /**
  * @group query
  * @group taxonomy
+ *
+ * @covers WP_Query
  */
 class Tests_Query_TaxQuery extends WP_UnitTestCase {
 	public function test_tax_query_single_query_single_term_field_slug() {
Index: tests/phpunit/tests/query/vars.php
===================================================================
--- tests/phpunit/tests/query/vars.php	(revision 50532)
+++ tests/phpunit/tests/query/vars.php	(working copy)
@@ -4,6 +4,8 @@
  * Tests to make sure query vars are as expected.
  *
  * @group query
+ *
+ * @covers WP_Query
  */
 class Tests_Query_Vars extends WP_UnitTestCase {
 
Index: tests/phpunit/tests/query/verboseRewriteRules.php
===================================================================
--- tests/phpunit/tests/query/verboseRewriteRules.php	(revision 50532)
+++ tests/phpunit/tests/query/verboseRewriteRules.php	(working copy)
@@ -5,6 +5,8 @@
 /**
  * @group query
  * @group rewrite
+ *
+ * @covers WP_Query
  */
 class Tests_Query_VerbosePageRules extends Tests_Query_Conditionals {
 	function setUp() {
