Index: tests/phpunit/tests/post/filtering.php
===================================================================
--- tests/phpunit/tests/post/filtering.php	(revision 50532)
+++ tests/phpunit/tests/post/filtering.php	(working copy)
@@ -8,6 +8,8 @@
  *
  * @group post
  * @group formatting
+ *
+ * @covers ::wp_insert_post
  */
 class Tests_Post_Filtering extends WP_UnitTestCase {
 	function setUp() {
@@ -22,7 +24,9 @@
 		parent::tearDown();
 	}
 
-	// A simple test to make sure unclosed tags are fixed.
+	/**
+	 * A simple test to make sure unclosed tags are fixed.
+	 */
 	function test_post_content_unknown_tag() {
 
 		$content = <<<EOF
@@ -39,7 +43,9 @@
 		$this->assertSame( $expected, $post->post_content );
 	}
 
-	// A simple test to make sure unbalanced tags are fixed.
+	/**
+	 * A simple test to make sure unbalanced tags are fixed.
+	 */
 	function test_post_content_unbalanced_tag() {
 
 		$content = <<<EOF
@@ -56,7 +62,9 @@
 		$this->assertSame( $expected, $post->post_content );
 	}
 
-	// Test KSES filtering of disallowed attribute.
+	/**
+	 * Test KSES filtering of disallowed attribute.
+	 */
 	function test_post_content_disallowed_attr() {
 
 		$content = <<<EOF
@@ -93,7 +101,9 @@
 		$this->assertSame( $expected, $post->post_content );
 	}
 
-	// Make sure unbalanced tags are untouched when the balance option is off.
+	/**
+	 * Make sure unbalanced tags are untouched when the balance option is off.
+	 */
 	function test_post_content_nobalance_nextpage_more() {
 
 		update_option( 'use_balanceTags', 0 );
Index: tests/phpunit/tests/post/wpInsertPost.php
===================================================================
--- tests/phpunit/tests/post/wpInsertPost.php	(revision 50532)
+++ tests/phpunit/tests/post/wpInsertPost.php	(working copy)
@@ -67,6 +67,8 @@
 
 	/**
 	 * @ticket 11863
+	 *
+	 * @covers ::wp_trash_post
 	 */
 	function test_trashing_a_post_should_add_trashed_suffix_to_post_name() {
 		$trashed_about_page_id = self::factory()->post->create(
@@ -82,6 +84,8 @@
 
 	/**
 	 * @ticket 11863
+	 *
+	 * @covers ::wp_trash_post
 	 */
 	public function test_trashed_suffix_should_be_added_to_post_with__trashed_in_slug() {
 		$trashed_about_page_id = self::factory()->post->create(
@@ -98,6 +102,8 @@
 
 	/**
 	 * @ticket 11863
+	 *
+	 * @covers ::wp_untrash_post
 	 */
 	function test_trashed_posts_original_post_name_should_be_reassigned_after_untrashing() {
 		$about_page_id = self::factory()->post->create(
@@ -115,6 +121,8 @@
 
 	/**
 	 * @ticket 11863
+	 *
+	 * @covers ::wp_insert_post
 	 */
 	function test_creating_a_new_post_should_add_trashed_suffix_to_post_name_of_trashed_posts_with_the_desired_slug() {
 		$trashed_about_page_id = self::factory()->post->create(
@@ -139,6 +147,8 @@
 
 	/**
 	 * @ticket 11863
+	 *
+	 * @covers ::wp_untrash_post
 	 */
 	function test_untrashing_a_post_with_a_stored_desired_post_name_should_get_its_post_name_suffixed_if_another_post_has_taken_the_desired_post_name() {
 		$about_page_id = self::factory()->post->create(
@@ -173,6 +183,8 @@
 	/**
 	 * @ticket 23022
 	 * @dataProvider data_various_post_statuses
+	 *
+	 * @covers ::wp_untrash_post
 	 */
 	function test_untrashing_a_post_should_always_restore_it_to_draft_status( $post_status ) {
 		$page_id = self::factory()->post->create(
@@ -191,6 +203,8 @@
 	/**
 	 * @ticket 23022
 	 * @dataProvider data_various_post_statuses
+	 *
+	 * @covers ::wp_untrash_post
 	 */
 	function test_wp_untrash_post_status_filter_restores_post_to_correct_status( $post_status ) {
 		add_filter( 'wp_untrash_post_status', 'wp_untrash_post_set_previous_status', 10, 3 );
@@ -256,6 +270,9 @@
 	 *
 	 * @ticket 42464
 	 * @dataProvider data_various_post_types
+	 *
+	 * @covers ::wp_insert_post
+	 * @covers ::wp_update_post
 	 */
 	function test_contributor_cannot_set_post_slug( $post_type ) {
 		wp_set_current_user( self::$user_ids['contributor'] );
@@ -295,6 +312,9 @@
 	 *
 	 * @ticket 42464
 	 * @dataProvider data_various_post_types
+	 *
+	 * @covers ::wp_insert_post
+	 * @covers ::wp_update_post
 	 */
 	function test_administrator_can_set_post_slug( $post_type ) {
 		wp_set_current_user( self::$user_ids['administrator'] );
@@ -336,6 +356,9 @@
 	 * These assertions failed prior to ticket #42464.
 	 *
 	 * @ticket 42464
+	 *
+	 * @covers ::wp_insert_post
+	 * @covers ::wp_update_post
 	 */
 	function test_administrator_cannot_set_post_slug_on_post_type_they_cannot_publish() {
 		wp_set_current_user( self::$user_ids['administrator'] );
@@ -372,6 +395,8 @@
 
 	/**
 	 * @ticket 25347
+	 *
+	 * @covers ::wp_insert_post
 	 */
 	function test_scheduled_post_with_a_past_date_should_be_published() {
 
Index: tests/phpunit/tests/post/wpPublishPost.php
===================================================================
--- tests/phpunit/tests/post/wpPublishPost.php	(revision 50532)
+++ tests/phpunit/tests/post/wpPublishPost.php	(working copy)
@@ -25,6 +25,8 @@
 	 * Ensure wp_publish_post does not add default category in error.
 	 *
 	 * @ticket 51292
+	 *
+	 * @covers ::wp_publish_post
 	 */
 	function test_wp_publish_post_respects_current_categories() {
 		$post_id     = self::$auto_draft_id;
@@ -44,8 +46,9 @@
 	/**
 	 * Ensure wp_publish_post adds default category.
 	 *
+	 * @ticket 51292
+	 *
 	 * @covers ::wp_publish_post
-	 * @ticket 51292
 	 */
 	function test_wp_publish_post_adds_default_category() {
 		$post_id = self::$auto_draft_id;
@@ -64,8 +67,9 @@
 	/**
 	 * Ensure wp_publish_post adds default category when tagged.
 	 *
+	 * @ticket 51292
+	 *
 	 * @covers ::wp_publish_post
-	 * @ticket 51292
 	 */
 	function test_wp_publish_post_adds_default_category_when_tagged() {
 		$post_id = self::$auto_draft_id;
@@ -85,8 +89,9 @@
 	/**
 	 * Ensure wp_publish_post does not add default term in error.
 	 *
+	 * @ticket 51292
+	 *
 	 * @covers ::wp_publish_post
-	 * @ticket 51292
 	 */
 	function test_wp_publish_post_respects_current_terms() {
 		// Create custom taxonomy to test with.
@@ -119,9 +124,10 @@
 
 	/**
 	 * Ensure wp_publish_post adds default term.
+	 * 
+	 * @ticket 51292
 	 *
 	 * @covers ::wp_publish_post
-	 * @ticket 51292
 	 */
 	function test_wp_publish_post_adds_default_term() {
 		// Create custom taxonomy to test with.
