Changeset 52010 for trunk/tests/phpunit/tests/formatting/ent2ncr.php
- Timestamp:
- 11/04/2021 03:22:47 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/formatting/ent2ncr.php
r51623 r52010 8 8 * @dataProvider entities 9 9 */ 10 function test_converts_named_entities_to_numeric_character_references( $entity, $ncr ) {10 public function test_converts_named_entities_to_numeric_character_references( $entity, $ncr ) { 11 11 $entity = '&' . $entity . ';'; 12 12 $ncr = '&#' . $ncr . ';'; … … 18 18 * Comments start with "###". 19 19 */ 20 function entities() {20 public function entities() { 21 21 $entities = file( DIR_TESTDATA . '/formatting/entities.txt' ); 22 22 $data_provided = array();
Note: See TracChangeset
for help on using the changeset viewer.