Changeset 36514 for trunk/tests/phpunit/tests/comment.php
- Timestamp:
- 02/12/2016 01:54:50 PM (10 years ago)
- File:
-
- 1 edited
-
trunk/tests/phpunit/tests/comment.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/comment.php
r36325 r36514 674 674 } 675 675 676 public function test_wp_get_comment_column_max_length() {677 $columns = array(678 'comment_author' => 245,679 'comment_author_email' => 100,680 'comment_author_url' => 200,681 'comment_author_IP' => 100,682 'comment_content' => 65525,683 'comment_approved' => 20,684 'comment_agent' => 255,685 'comment_type' => 20,686 );687 688 foreach ( $columns as $column => $expected ) {689 $max_length = wp_get_comment_column_max_length( $column );690 $this->assertSame( $expected, $max_length );691 }692 }693 676 }
Note: See TracChangeset
for help on using the changeset viewer.