Tests: Rename classes in phpunit/tests/comment/ per the naming conventions.

https://make.wordpress.org/core/handbook/testing/automated-testing/writing-phpunit-tests/#naming-and-organization

Follow-up to [47780], [48911], [49327], [50291], [50292], [50342], [50452], [50453], [50456], [50967], [50968], [50969], [51491], [51492], [51493], [51623], [51639], [51646], [51650], [51651], [51860], [52264], [52265], [53489], [53863].

See #56793.

git-svn-id: https://develop.svn.wordpress.org/trunk@54704 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov
2022-10-27 15:53:08 +00:00
parent 7691fe2725
commit 5b344d17da
11 changed files with 26 additions and 30 deletions

View File

@@ -2080,11 +2080,11 @@ class Tests_Comment_Query extends WP_UnitTestCase {
$this->assertSameSets( array( $c3 ), $comment_ids );
}
/**
* @ticket 29885
*
* @covers ::get_comments
*/
/**
* @ticket 29885
*
* @covers ::get_comments
*/
public function test_fields_author__in() {
$p1 = self::factory()->post->create();
$p2 = self::factory()->post->create();
@@ -2130,11 +2130,11 @@ class Tests_Comment_Query extends WP_UnitTestCase {
$this->assertSameSets( array( $c1, $c3 ), $comment_ids );
}
/**
* @ticket 29885
*
* @covers ::get_comments
*/
/**
* @ticket 29885
*
* @covers ::get_comments
*/
public function test_fields_author__not_in() {
$p1 = self::factory()->post->create();
$p2 = self::factory()->post->create();
@@ -3328,7 +3328,6 @@ class Tests_Comment_Query extends WP_UnitTestCase {
}
/**
*
* @covers WP_Comment_Query::query
*/
public function test_post_name_single_value() {