- Timestamp:
- 10/05/2018 05:24:17 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/testcases/blogs/class-bp-blogs-blog.php
r12244 r12246 6 6 */ 7 7 class BP_Tests_BP_Blogs_Blog_TestCases extends BP_UnitTestCase { 8 /**9 * @expectedDeprecated wpmu_new_blog10 */11 8 public function test_get_with_search_terms() { 12 9 if ( ! is_multisite() ) { 13 10 $this->markTestSkipped(); 11 } 12 13 if ( function_exists( 'wp_initialize_site' ) ) { 14 $this->setExpectedDeprecated( 'wpmu_new_blog' ); 14 15 } 15 16 … … 35 36 /** 36 37 * @ticket BP5858 37 * @expectedDeprecated wpmu_new_blog38 38 */ 39 39 public function test_get_with_search_terms_should_match_description() { 40 40 if ( ! is_multisite() ) { 41 41 $this->markTestSkipped(); 42 } 43 44 if ( function_exists( 'wp_initialize_site' ) ) { 45 $this->setExpectedDeprecated( 'wpmu_new_blog' ); 42 46 } 43 47 … … 64 68 } 65 69 66 /**67 * @expectedDeprecated wpmu_new_blog68 */69 70 public function test_search_blogs() { 70 71 if ( ! is_multisite() ) { 71 72 $this->markTestSkipped(); 73 } 74 75 if ( function_exists( 'wp_initialize_site' ) ) { 76 $this->setExpectedDeprecated( 'wpmu_new_blog' ); 72 77 } 73 78 … … 94 99 /** 95 100 * @group get_by_letter 96 * @expectedDeprecated wpmu_new_blog97 101 */ 98 102 public function test_get_by_letter() { … … 100 104 $this->markTestSkipped(); 101 105 return; 106 } 107 108 if ( function_exists( 'wp_initialize_site' ) ) { 109 $this->setExpectedDeprecated( 'wpmu_new_blog' ); 102 110 } 103 111 … … 124 132 /** 125 133 * @group get_order_by 126 * @expectedDeprecated wpmu_new_blog127 134 */ 128 135 public function test_get_order_by() { 129 136 if ( ! is_multisite() ) { 130 137 $this->markTestSkipped(); 138 } 139 140 if ( function_exists( 'wp_initialize_site' ) ) { 141 $this->setExpectedDeprecated( 'wpmu_new_blog' ); 131 142 } 132 143
Note: See TracChangeset
for help on using the changeset viewer.