- Timestamp:
- 08/22/2022 10:42:59 PM (16 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/rest-api/rest-themes-controller.php
r53659 r53921 1202 1202 * The create_item() method does not exist for themes. 1203 1203 */ 1204 public function test_create_item() {} 1204 public function test_create_item() { 1205 $this->markTestSkipped( 'Controller does not implement create_item().' ); 1206 } 1205 1207 1206 1208 /** 1207 1209 * The update_item() method does not exist for themes. 1208 1210 */ 1209 public function test_update_item() {} 1211 public function test_update_item() { 1212 $this->markTestSkipped( 'Controller does not implement update_item().' ); 1213 } 1210 1214 1211 1215 /** … … 1396 1400 * The delete_item() method does not exist for themes. 1397 1401 */ 1398 public function test_delete_item() {} 1402 public function test_delete_item() { 1403 $this->markTestSkipped( 'Controller does not implement delete_item().' ); 1404 } 1399 1405 1400 1406 /** 1401 1407 * Context is not supported for themes. 1402 1408 */ 1403 public function test_context_param() {} 1409 public function test_context_param() { 1410 $this->markTestSkipped( 'Controller does not use get_context_param().' ); 1411 } 1404 1412 }
Note: See TracChangeset
for help on using the changeset viewer.