- Timestamp:
- 08/22/2022 10:42:59 PM (16 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/rest-api/wpRestBlockPatternsController.php
r53152 r53921 173 173 174 174 public function test_context_param() { 175 $this->markTestSkipped( 'Controller does not use context_param.' );175 $this->markTestSkipped( 'Controller does not use get_context_param().' ); 176 176 } 177 177 178 178 public function test_get_item() { 179 $this->markTestSkipped( 'Controller does not have get_item route.' );179 $this->markTestSkipped( 'Controller does not implement get_item().' ); 180 180 } 181 181 182 182 public function test_create_item() { 183 $this->markTestSkipped( 'Controller does not have create_item route.' );183 $this->markTestSkipped( 'Controller does not implement create_item().' ); 184 184 } 185 185 186 186 public function test_update_item() { 187 $this->markTestSkipped( 'Controller does not have update_item route.' );187 $this->markTestSkipped( 'Controller does not implement update_item().' ); 188 188 } 189 189 190 190 public function test_delete_item() { 191 $this->markTestSkipped( 'Controller does not have delete_item route.' );191 $this->markTestSkipped( 'Controller does not implement delete_item().' ); 192 192 } 193 193 194 194 public function test_prepare_item() { 195 $this->markTestSkipped( 'Controller does not have prepare_item route.' );195 $this->markTestSkipped( 'Controller does not implement prepare_item().' ); 196 196 } 197 197 198 198 public function test_get_item_schema() { 199 $this->markTestSkipped( 'Controller does not have get_item_schema route.' );199 $this->markTestSkipped( 'Controller does not implement get_item_schema().' ); 200 200 } 201 201 }
Note: See TracChangeset
for help on using the changeset viewer.