- 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-pattern-directory-controller.php
r53665 r53921 312 312 313 313 public function test_get_item() { 314 $this->markTestSkipped( 'Controller does not have get_item route.' );314 $this->markTestSkipped( 'Controller does not implement get_item().' ); 315 315 } 316 316 317 317 public function test_create_item() { 318 $this->markTestSkipped( 'Controller does not have create_item route.' );318 $this->markTestSkipped( 'Controller does not implement create_item().' ); 319 319 } 320 320 321 321 public function test_update_item() { 322 $this->markTestSkipped( 'Controller does not have update_item route.' );322 $this->markTestSkipped( 'Controller does not implement update_item().' ); 323 323 } 324 324 325 325 public function test_delete_item() { 326 $this->markTestSkipped( 'Controller does not have delete_item route.' );326 $this->markTestSkipped( 'Controller does not implement delete_item().' ); 327 327 } 328 328
Note: See TracChangeset
for help on using the changeset viewer.