- Timestamp:
- 08/22/2022 10:42:59 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/rest-api/rest-block-directory-controller.php
r53315 r53921 132 132 133 133 public function test_get_item() { 134 $this->markTestSkipped( 'Controller does not have get_item route.' );134 $this->markTestSkipped( 'Controller does not implement get_item().' ); 135 135 } 136 136 137 137 public function test_create_item() { 138 $this->markTestSkipped( 'Controller does not have create_item route.' );138 $this->markTestSkipped( 'Controller does not implement create_item().' ); 139 139 } 140 140 141 141 public function test_update_item() { 142 $this->markTestSkipped( 'Controller does not have update_item route.' );142 $this->markTestSkipped( 'Controller does not implement update_item().' ); 143 143 } 144 144 145 145 public function test_delete_item() { 146 $this->markTestSkipped( 'Controller does not have delete_item route.' );146 $this->markTestSkipped( 'Controller does not implement delete_item().' ); 147 147 } 148 148
Note: See TracChangeset
for help on using the changeset viewer.