You appear to be a bot. Output may be restricted
Description
Usage
Tests_Admin_Includes_Post::test_post_exists_should_match_content_with_no_title();
Parameters
Returns
void
Source
File name: wordpress-develop-tests/phpunit/tests/admin/includesPost.php
Lines:
1 to 13 of 13
public function test_post_exists_should_match_content_with_no_title() { $title = ''; $content = 'Foo Bar Baz'; $p = self::factory()->post->create( array( 'post_title' => $title, 'post_content' => $content, ) ); $this->assertSame( $p, post_exists( $title, $content ) ); }