You appear to be a bot. Output may be restricted
Description
Usage
Tests_Post::test_get_post_time_returns_false_with_null_or_non_existing_post();
Parameters
Returns
void
Source
File name: wordpress-develop-tests/phpunit/tests/post.php
Lines:
1 to 7 of 7
function test_get_post_time_returns_false_with_null_or_non_existing_post() { $this->assertFalse( get_post_time() ); $this->assertFalse( get_post_time( 'h:i:s' ) ); $this->assertFalse( get_post_time( '', false, 9 ) ); $this->assertFalse( get_post_time( 'h:i:s', false, 9 ) ); }