Changeset 12246 for trunk/tests/phpunit/testcases/blogs/activity.php
- Timestamp:
- 10/05/2018 05:24:17 PM (8 years ago)
- File:
-
- 1 edited
-
trunk/tests/phpunit/testcases/blogs/activity.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/testcases/blogs/activity.php
r12244 r12246 24 24 * @group activity_action 25 25 * @group bp_blogs_format_activity_action_new_blog 26 * @expectedDeprecated wpmu_new_blog27 26 */ 28 27 public function test_bp_blogs_format_activity_action_new_blog() { 29 28 if ( ! is_multisite() ) { 30 29 $this->markTestSkipped(); 30 } 31 32 if ( function_exists( 'wp_initialize_site' ) ) { 33 $this->setExpectedDeprecated( 'wpmu_new_blog' ); 31 34 } 32 35 … … 118 121 * @group activity_action 119 122 * @group bp_blogs_format_activity_action_new_blog_post 120 * @expectedDeprecated wpmu_new_blog121 123 */ 122 124 public function test_bp_blogs_format_activity_action_new_blog_post_ms_nonrootblog() { 123 125 if ( ! is_multisite() ) { 124 126 $this->markTestSkipped(); 127 } 128 129 if ( function_exists( 'wp_initialize_site' ) ) { 130 $this->setExpectedDeprecated( 'wpmu_new_blog' ); 125 131 } 126 132 … … 160 166 * @group bp_blogs_format_activity_action_new_blog_comment 161 167 * @group post_type_comment_activities 162 * @expectedDeprecated wpmu_new_blog163 168 */ 164 169 public function test_bp_blogs_format_activity_action_new_blog_comment_ms_nonrootblog() { 165 170 if ( ! is_multisite() ) { 166 171 $this->markTestSkipped(); 172 } 173 174 if ( function_exists( 'wp_initialize_site' ) ) { 175 $this->setExpectedDeprecated( 'wpmu_new_blog' ); 167 176 } 168 177 … … 204 213 /** 205 214 * @group bp_blogs_format_activity_action_new_blog 206 * @expectedDeprecated wpmu_new_blog207 215 */ 208 216 public function test_bp_activity_format_activity_action_new_blog_backpat() { 209 217 if ( ! is_multisite() ) { 210 218 $this->markTestSkipped(); 219 } 220 221 if ( function_exists( 'wp_initialize_site' ) ) { 222 $this->setExpectedDeprecated( 'wpmu_new_blog' ); 211 223 } 212 224 … … 233 245 /** 234 246 * @group bp_blogs_format_activity_action_new_blog_post 235 * @expectedDeprecated wpmu_new_blog236 247 */ 237 248 public function test_bp_activity_format_activity_action_new_blog_post_backpat() { 238 249 if ( ! is_multisite() ) { 239 250 $this->markTestSkipped(); 251 } 252 253 if ( function_exists( 'wp_initialize_site' ) ) { 254 $this->setExpectedDeprecated( 'wpmu_new_blog' ); 240 255 } 241 256 … … 262 277 /** 263 278 * @group bp_blogs_format_activity_action_new_blog_comment 264 * @expectedDeprecated wpmu_new_blog265 279 */ 266 280 public function test_bp_activity_format_activity_action_new_blog_comment_backpat() { 267 281 if ( ! is_multisite() ) { 268 282 $this->markTestSkipped(); 283 } 284 285 if ( function_exists( 'wp_initialize_site' ) ) { 286 $this->setExpectedDeprecated( 'wpmu_new_blog' ); 269 287 } 270 288
Note: See TracChangeset
for help on using the changeset viewer.