Tests: Rename some files and classes in phpunit/tests/general/ 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].

See #51802.

git-svn-id: https://develop.svn.wordpress.org/trunk@50292 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2021-02-11 21:38:30 +00:00
parent 88567c5bae
commit ae1a9ba8db
5 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
<?php
class Tests_Paginate_Links extends WP_UnitTestCase {
class Tests_General_PaginateLinks extends WP_UnitTestCase {
private $i18n_count = 0;

View File

@ -7,7 +7,7 @@
*
* @coversDefaultClass WP_Error
*/
class Tests_WP_Error extends WP_UnitTestCase {
class Tests_General_wpError extends WP_UnitTestCase {
/**
* WP_Error fixture.

View File

@ -3,7 +3,7 @@
/**
* @group general
*/
class Tests_General_Archives extends WP_UnitTestCase {
class Tests_General_wpGetArchives extends WP_UnitTestCase {
function setUp() {
parent::setUp();

View File

@ -6,7 +6,7 @@
* @group template
* @group document-title
*/
class Tests_General_DocumentTitle extends WP_UnitTestCase {
class Tests_General_wpGetDocumentTitle extends WP_UnitTestCase {
public $blog_name;
public static $category_id;

View File

@ -4,7 +4,7 @@
* @group template
* @ticket 34292
*/
class Tests_WP_Resource_Hints extends WP_UnitTestCase {
class Tests_General_wpResourceHints extends WP_UnitTestCase {
private $old_wp_scripts;
private $old_wp_styles;