Changeset 49006 for trunk/tests/phpunit/tests/functions/wpListUtil.php
- Timestamp:
- 09/19/2020 03:52:03 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/functions/wpListUtil.php
r48939 r49006 155 155 /** 156 156 * @dataProvider data_test_wp_list_pluck 157 * 158 * @covers ::wp_list_pluck 157 159 * 158 160 * @param array $list List of objects or arrays. … … 359 361 /** 360 362 * @dataProvider data_test_wp_list_filter 363 * 364 * @covers ::wp_list_filter 361 365 * 362 366 * @param array $list An array of objects to filter. … … 687 691 * @dataProvider data_test_wp_list_sort 688 692 * 693 * @covers ::wp_list_sort 694 * 689 695 * @param string|array $orderby Either the field name to order by or an array 690 696 * of multiple orderby fields as $orderby => $order. … … 1011 1017 /** 1012 1018 * @dataProvider data_test_wp_list_sort_preserve_keys 1019 * 1020 * @covers ::wp_list_sort 1013 1021 * 1014 1022 * @param string|array $orderby Either the field name to order by or an array … … 1020 1028 } 1021 1029 1030 /** 1031 * @covers WP_List_Util::get_input 1032 */ 1022 1033 public function test_wp_list_util_get_input() { 1023 1034 $input = array( 'foo', 'bar' ); … … 1027 1038 } 1028 1039 1040 /** 1041 * @covers WP_List_Util::get_output 1042 */ 1029 1043 public function test_wp_list_util_get_output_immediately() { 1030 1044 $input = array( 'foo', 'bar' ); … … 1034 1048 } 1035 1049 1050 /** 1051 * @covers WP_List_Util::get_output 1052 */ 1036 1053 public function test_wp_list_util_get_output() { 1037 1054 $expected = array(
Note: See TracChangeset
for help on using the changeset viewer.