- Timestamp:
- 08/22/2022 10:42:59 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/rest-api/wpRestMenuLocationsController.php
r52079 r53921 141 141 142 142 /** 143 * The test_create_item() method does not exist for menu locations. 144 */ 145 public function test_create_item() {} 146 147 /** 148 * The test_update_item() method does not exist for menu locations. 149 */ 150 public function test_update_item() {} 151 152 /** 153 * The test_delete_item() method does not exist for menu locations. 154 */ 155 public function test_delete_item() {} 156 157 /** 158 * The test_prepare_item() method does not exist for menu locations. 159 */ 160 public function test_prepare_item() {} 143 * The create_item() method does not exist for menu locations. 144 */ 145 public function test_create_item() { 146 $this->markTestSkipped( 'Controller does not implement create_item().' ); 147 } 148 149 /** 150 * The update_item() method does not exist for menu locations. 151 */ 152 public function test_update_item() { 153 $this->markTestSkipped( 'Controller does not implement update_item().' ); 154 } 155 156 /** 157 * The delete_item() method does not exist for menu locations. 158 */ 159 public function test_delete_item() { 160 $this->markTestSkipped( 'Controller does not implement delete_item().' ); 161 } 162 163 /** 164 * The prepare_item() method does not exist for menu locations. 165 */ 166 public function test_prepare_item() { 167 $this->markTestSkipped( 'Controller does not implement prepare_item().' ); 168 } 161 169 162 170 /**
Note: See TracChangeset
for help on using the changeset viewer.