Changeset 43571 for trunk/tests/phpunit/tests/term/wpGenerateTagCloud.php
- Timestamp:
- 08/17/2018 01:50:26 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/term/wpGenerateTagCloud.php
r42343 r43571 84 84 85 85 $found = wp_generate_tag_cloud( 86 $tags, array( 86 $tags, 87 array( 87 88 'hide_empty' => false, 88 89 ) … … 105 106 106 107 $found = wp_generate_tag_cloud( 107 $tags, array( 108 $tags, 109 array( 108 110 'hide_empty' => false, 109 111 'format' => 'array', … … 127 129 128 130 $found = wp_generate_tag_cloud( 129 $tags, array( 131 $tags, 132 array( 130 133 'hide_empty' => false, 131 134 'format' => 'list', … … 154 157 155 158 $found = wp_generate_tag_cloud( 156 $tags, array( 159 $tags, 160 array( 157 161 'hide_empty' => false, 158 162 ) … … 180 184 181 185 $found = wp_generate_tag_cloud( 182 $tags, array( 186 $tags, 187 array( 183 188 'hide_empty' => false, 184 189 'format' => 'list', … … 209 214 array( 210 215 'include' => $term_ids, 211 ), 'wptests_tax' 216 ), 217 'wptests_tax' 212 218 ); 213 219 214 220 $actual = wp_generate_tag_cloud( 215 $term_objects, array( 221 $term_objects, 222 array( 216 223 'format' => 'array', 217 224 'topic_count_text' => array( … … 243 250 array( 244 251 'include' => $term_ids, 245 ), 'wptests_tax' 252 ), 253 'wptests_tax' 246 254 ); 247 255 248 256 $actual = wp_generate_tag_cloud( 249 $term_objects, array( 257 $term_objects, 258 array( 250 259 'format' => 'array', 251 260 'topic_count_text_callback' => array( $this, 'topic_count_text_callback' ), … … 268 277 269 278 $term_objects = get_terms( 270 'wptests_tax', array( 279 'wptests_tax', 280 array( 271 281 'include' => $term_ids, 272 282 )
Note: See TracChangeset
for help on using the changeset viewer.