Changeset 48937 for trunk/tests/phpunit/tests/xmlrpc/wp/getPostTypes.php
- Timestamp:
- 09/02/2020 12:35:36 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/xmlrpc/wp/getPostTypes.php
r47122 r48937 8 8 $result = $this->myxmlrpcserver->wp_getPostTypes( array( 1, 'username', 'password', 'post' ) ); 9 9 $this->assertIXRError( $result ); 10 $this->assert Equals( 403, $result->code );10 $this->assertSame( 403, $result->code ); 11 11 } 12 12 … … 17 17 $this->assertNotIXRError( $result ); 18 18 $this->assertInternalType( 'array', $result ); 19 $this->assert Equals( 0, count( $result ) );19 $this->assertSame( 0, count( $result ) ); 20 20 } 21 21
Note: See TracChangeset
for help on using the changeset viewer.