You appear to be a bot. Output may be restricted
Description
Verify that both the comment date and author must match for a comment to exist.
Usage
Tests_Admin_IncludesComment::test_must_match_date_and_author();
Parameters
Returns
void
Source
File name: wordpress-develop-tests/phpunit/tests/admin/includesComment.php
Lines:
1 to 4 of 4
public function test_must_match_date_and_author() { $this->assertNull( comment_exists( 1, '2004-01-02 12:00:00' ) ); $this->assertEquals( self::$post_id, comment_exists( 1, '2014-05-06 12:00:00' ) ); }