- Timestamp:
- 08/22/2022 10:42:59 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/rest-api/wpRestUrlDetailsController.php
r52311 r53921 1050 1050 1051 1051 public function test_context_param() { 1052 $this->markTestSkipped( 'Controller does not use context_param.' );1052 $this->markTestSkipped( 'Controller does not use get_context_param().' ); 1053 1053 } 1054 1054 1055 1055 public function test_get_item() { 1056 $this->markTestSkipped( 'Controller does not have get_item route.' );1056 $this->markTestSkipped( 'Controller does not implement get_item().' ); 1057 1057 } 1058 1058 1059 1059 public function test_create_item() { 1060 $this->markTestSkipped( 'Controller does not have create_item route.' );1060 $this->markTestSkipped( 'Controller does not implement create_item().' ); 1061 1061 } 1062 1062 1063 1063 public function test_update_item() { 1064 $this->markTestSkipped( 'Controller does not have update_item route.' );1064 $this->markTestSkipped( 'Controller does not implement update_item().' ); 1065 1065 } 1066 1066 1067 1067 public function test_delete_item() { 1068 $this->markTestSkipped( 'Controller does not have delete_item route.' );1068 $this->markTestSkipped( 'Controller does not implement delete_item().' ); 1069 1069 } 1070 1070 1071 1071 public function test_prepare_item() { 1072 $this->markTestSkipped( 'Controller does not have prepare_item route.' );1072 $this->markTestSkipped( 'Controller does not implement prepare_item().' ); 1073 1073 } 1074 1074
Note: See TracChangeset
for help on using the changeset viewer.