- Timestamp:
- 08/22/2022 10:42:59 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/rest-api/wpRestBlockPatternCategoriesController.php
r53152 r53921 147 147 148 148 public function test_context_param() { 149 $this->markTestSkipped( 'Controller does not use context_param.' );149 $this->markTestSkipped( 'Controller does not use get_context_param().' ); 150 150 } 151 151 152 152 public function test_get_item() { 153 $this->markTestSkipped( 'Controller does not have get_item route.' );153 $this->markTestSkipped( 'Controller does not implement get_item().' ); 154 154 } 155 155 156 156 public function test_create_item() { 157 $this->markTestSkipped( 'Controller does not have create_item route.' );157 $this->markTestSkipped( 'Controller does not implement create_item().' ); 158 158 } 159 159 160 160 public function test_update_item() { 161 $this->markTestSkipped( 'Controller does not have update_item route.' );161 $this->markTestSkipped( 'Controller does not implement update_item().' ); 162 162 } 163 163 164 164 public function test_delete_item() { 165 $this->markTestSkipped( 'Controller does not have delete_item route.' );165 $this->markTestSkipped( 'Controller does not implement delete_item().' ); 166 166 } 167 167 168 168 public function test_prepare_item() { 169 $this->markTestSkipped( 'Controller does not have prepare_item route.' );169 $this->markTestSkipped( 'Controller does not implement prepare_item().' ); 170 170 } 171 171 172 172 public function test_get_item_schema() { 173 $this->markTestSkipped( 'Controller does not have get_item_schema route.' );173 $this->markTestSkipped( 'Controller does not implement get_item_schema().' ); 174 174 } 175 175 }
Note: See TracChangeset
for help on using the changeset viewer.