Changeset 47780
- Timestamp:
- 05/10/2020 12:07:49 PM (5 years ago)
- Location:
- trunk/tests/phpunit/tests/functions
- Files:
-
- 14 edited
- 4 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/functions/canonicalCharset.php
r47779 r47780 2 2 3 3 /* 4 * Validate that 's badly named charsets always return the correct format for UTF-8 and ISO-8859-14 * Validate that badly named charsets always return the correct format for UTF-8 and ISO-8859-1. 5 5 * 6 6 * @since 4.8.0 7 7 */ 8 8 9 class Tests_Functions_ canonical_charset extends WP_UnitTestCase {9 class Tests_Functions_CanonicalCharset extends WP_UnitTestCase { 10 10 11 11 public function test_utf_8_lower() { -
trunk/tests/phpunit/tests/functions/cleanupHeaderComment.php
r47779 r47780 7 7 * @ticket 38101 8 8 */ 9 class Tests_ Cleanup_Header_Comment extends WP_UnitTestCase {9 class Tests_Functions_CleanupHeaderComment extends WP_UnitTestCase { 10 10 /** 11 11 * Test cleanup header of header comment. -
trunk/tests/phpunit/tests/functions/deprecated.php
r47200 r47780 6 6 * @package WordPress 7 7 * @subpackage Unit Tests 8 * @since 3.5 8 * @since 3.5.0 9 9 * @group deprecated 10 10 */ 11 class Test _Functions_Deprecated extends WP_UnitTestCase {11 class Tests_Functions_Deprecated extends WP_UnitTestCase { 12 12 13 13 /** -
trunk/tests/phpunit/tests/functions/getStatusHeaderDesc.php
r46586 r47780 8 8 * @group functions.php 9 9 */ 10 class Tests_Functions_ get_status_header_desc extends WP_UnitTestCase {10 class Tests_Functions_GetStatusHeaderDesc extends WP_UnitTestCase { 11 11 12 12 /** -
trunk/tests/phpunit/tests/functions/isNewDay.php
r46586 r47780 7 7 * @group functions.php 8 8 */ 9 class Tests_Functions_ is_new_date extends WP_UnitTestCase {9 class Tests_Functions_IsNewDate extends WP_UnitTestCase { 10 10 11 11 /** -
trunk/tests/phpunit/tests/functions/isSerializedString.php
r46586 r47780 7 7 * @ticket 42870 8 8 */ 9 class Tests_Functions_Is _Serialized_String extends WP_UnitTestCase {9 class Tests_Functions_IsSerializedString extends WP_UnitTestCase { 10 10 11 11 /** -
trunk/tests/phpunit/tests/functions/numberFormatI18n.php
r36795 r47780 7 7 * @group i18n 8 8 */ 9 class Tests_Functions_Number _Format_I18n extends WP_UnitTestCase {9 class Tests_Functions_NumberFormatI18n extends WP_UnitTestCase { 10 10 public function test_should_fall_back_to_number_format_when_wp_locale_is_not_set() { 11 11 $locale = clone $GLOBALS['wp_locale']; -
trunk/tests/phpunit/tests/functions/pluginBasename.php
r46586 r47780 7 7 * @group plugins 8 8 */ 9 class Tests_ Plugin_Basename extends WP_UnitTestCase {9 class Tests_Functions_PluginBasename extends WP_UnitTestCase { 10 10 11 11 /** -
trunk/tests/phpunit/tests/functions/sizeFormat.php
r46586 r47780 7 7 * @ticket 36635 8 8 */ 9 class Tests_Functions_Size _Format extends WP_UnitTestCase {9 class Tests_Functions_SizeFormat extends WP_UnitTestCase { 10 10 public function _data_size_format() { 11 11 return array( -
trunk/tests/phpunit/tests/functions/underscoreReturn.php
r46586 r47780 7 7 * @group functions.php 8 8 */ 9 class Tests_Functions_Underscore _Return extends WP_UnitTestCase {9 class Tests_Functions_UnderscoreReturn extends WP_UnitTestCase { 10 10 11 11 public function test__return_true() { -
trunk/tests/phpunit/tests/functions/wpArraySliceAssoc.php
r46586 r47780 9 9 * @group functions.php 10 10 */ 11 class Tests_Functions_ WpArraySliceAssoc extends WP_UnitTestCase {11 class Tests_Functions_wpArraySliceAssoc extends WP_UnitTestCase { 12 12 13 13 /** -
trunk/tests/phpunit/tests/functions/wpAuthCheck.php
r47212 r47780 6 6 * @group functions.php 7 7 */ 8 class Tests_Functions_ WP_Auth_Check extends WP_UnitTestCase {8 class Tests_Functions_wpAuthCheck extends WP_UnitTestCase { 9 9 10 10 /** -
trunk/tests/phpunit/tests/functions/wpGetArchives.php
r47779 r47780 8 8 ); 9 9 */ 10 class Tests_ Get_Archives extends WP_UnitTestCase {10 class Tests_Functions_wpGetArchives extends WP_UnitTestCase { 11 11 protected static $post_ids; 12 12 protected $month_url; -
trunk/tests/phpunit/tests/functions/wpGetMimeTypes.php
r46586 r47780 6 6 * @group functions.php 7 7 */ 8 class Tests_ wp_get_mime_types extends WP_UnitTestCase {8 class Tests_Functions_wpGetMimeTypes extends WP_UnitTestCase { 9 9 10 10 /** -
trunk/tests/phpunit/tests/functions/wpListFilter.php
r47779 r47780 6 6 * @group functions.php 7 7 */ 8 class Tests_Functions_ ListFilter extends WP_UnitTestCase {8 class Tests_Functions_wpListFilter extends WP_UnitTestCase { 9 9 var $object_list = array(); 10 10 var $array_list = array(); -
trunk/tests/phpunit/tests/functions/wpListUtil.php
r46586 r47780 4 4 * @group functions.php 5 5 */ 6 class Tests_WP_List_Util extends WP_UnitTestCase { 6 class Tests_Functions_wpListUtil extends WP_UnitTestCase { 7 7 8 public function data_test_wp_list_pluck() { 8 9 return array( -
trunk/tests/phpunit/tests/functions/wpRemoteFopen.php
r47212 r47780 5 5 * @group functions.php 6 6 */ 7 class Tests_Functions_wp _remote_fopen extends WP_UnitTestCase {7 class Tests_Functions_wpRemoteFopen extends WP_UnitTestCase { 8 8 9 9 /** -
trunk/tests/phpunit/tests/functions/wpValidateBoolean.php
r47141 r47780 7 7 * @group functions.php 8 8 */ 9 class Tests_Functions_ WpValidateBoolean extends WP_UnitTestCase {9 class Tests_Functions_wpValidateBoolean extends WP_UnitTestCase { 10 10 /** 11 11 * Provides test scenarios for all possible scenarios in wp_validate_boolean().
Note: See TracChangeset
for help on using the changeset viewer.