- Timestamp:
- 08/22/2022 10:42:59 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/rest-api/rest-block-type-controller.php
r53268 r53921 552 552 553 553 /** 554 * The test_create_item() method does not exist for block types. 555 */ 556 public function test_create_item() {} 557 558 /** 559 * The test_update_item() method does not exist for block types. 560 */ 561 public function test_update_item() {} 562 563 /** 564 * The test_delete_item() method does not exist for block types. 565 */ 566 public function test_delete_item() {} 554 * The create_item() method does not exist for block types. 555 */ 556 public function test_create_item() { 557 $this->markTestSkipped( 'Controller does not implement create_item().' ); 558 } 559 560 /** 561 * The update_item() method does not exist for block types. 562 */ 563 public function test_update_item() { 564 $this->markTestSkipped( 'Controller does not implement create_item().' ); 565 } 566 567 /** 568 * The delete_item() method does not exist for block types. 569 */ 570 public function test_delete_item() { 571 $this->markTestSkipped( 'Controller does not implement delete_item().' ); 572 } 567 573 }
Note: See TracChangeset
for help on using the changeset viewer.