Changeset 48924 for trunk/tests/phpunit/tests/date/getCommentDate.php
- Timestamp:
- 08/31/2020 10:41:02 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/date/getCommentDate.php
r48912 r48924 11 11 * @ticket 51184 12 12 */ 13 function test_get_comment_date_returns_correct_time_with_comment_id() {13 public function test_get_comment_date_returns_correct_time_with_comment_id() { 14 14 $c = self::factory()->comment->create( array( 'comment_date' => '2020-08-29 01:51:00' ) ); 15 15 … … 20 20 * @ticket 51184 21 21 */ 22 function test_get_comment_date_returns_correct_time_with_empty_format() {22 public function test_get_comment_date_returns_correct_time_with_empty_format() { 23 23 $c = self::factory()->comment->create( array( 'comment_date' => '2020-08-29 01:51:00' ) ); 24 24 … … 30 30 * @ticket 51184 31 31 */ 32 function test_get_comment_time_returns_correct_time() {32 public function test_get_comment_time_returns_correct_time() { 33 33 $c = self::factory()->comment->create( array( 'comment_date' => '2020-08-29 01:51:00' ) ); 34 34 … … 40 40 * @ticket 51184 41 41 */ 42 function test_get_comment_time_returns_correct_time_with_empty_format() {42 public function test_get_comment_time_returns_correct_time_with_empty_format() { 43 43 $c = self::factory()->comment->create( array( 'comment_date' => '2020-08-29 01:51:00' ) ); 44 44
Note: See TracChangeset
for help on using the changeset viewer.