Changeset 52010 for trunk/tests/phpunit/tests/xmlrpc/wp/deleteTerm.php
- Timestamp:
- 11/04/2021 03:22:47 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/xmlrpc/wp/deleteTerm.php
r51331 r52010 15 15 } 16 16 17 function test_invalid_username_password() {17 public function test_invalid_username_password() { 18 18 $result = $this->myxmlrpcserver->wp_deleteTerm( array( 1, 'username', 'password', 'category', 0 ) ); 19 19 $this->assertIXRError( $result ); … … 21 21 } 22 22 23 function test_empty_taxonomy() {23 public function test_empty_taxonomy() { 24 24 $this->make_user_by_role( 'subscriber' ); 25 25 … … 30 30 } 31 31 32 function test_invalid_taxonomy() {32 public function test_invalid_taxonomy() { 33 33 $this->make_user_by_role( 'subscriber' ); 34 34 … … 39 39 } 40 40 41 function test_incapable_user() {41 public function test_incapable_user() { 42 42 $this->make_user_by_role( 'subscriber' ); 43 43 … … 48 48 } 49 49 50 function test_empty_term() {50 public function test_empty_term() { 51 51 $this->make_user_by_role( 'editor' ); 52 52 … … 57 57 } 58 58 59 function test_invalid_term() {59 public function test_invalid_term() { 60 60 $this->make_user_by_role( 'editor' ); 61 61 … … 66 66 } 67 67 68 function test_term_deleted() {68 public function test_term_deleted() { 69 69 $this->make_user_by_role( 'editor' ); 70 70
Note: See TracChangeset
for help on using the changeset viewer.