You appear to be a bot. Output may be restricted
Description
Usage
Tests_XMLRPC_wp_newPost::test_ignore_id();
Parameters
Returns
void
Source
File name: wordpress-develop-tests/phpunit/tests/xmlrpc/wp/newPost.php
Lines:
1 to 12 of 12
public function test_ignore_id() { $this->make_user_by_role( 'author' ); $post = array( 'post_title' => 'Test', 'ID' => 103948, ); $result = $this->myxmlrpcserver->wp_newPost( array( 1, 'author', 'author', $post ) ); $this->assertNotIXRError( $result ); $this->assertNotEquals( '103948', $result ); }