Changeset 55562 for trunk/tests/phpunit/tests/compat/mbStrlen.php
- Timestamp:
- 03/19/2023 12:03:30 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/compat/mbStrlen.php
r55036 r55562 18 18 19 19 /** 20 * @dataProvider utf8_string_lengths20 * @dataProvider data_utf8_string_lengths 21 21 */ 22 22 public function test_mb_strlen( $input_string, $expected_character_length ) { … … 25 25 26 26 /** 27 * @dataProvider utf8_string_lengths27 * @dataProvider data_utf8_string_lengths 28 28 */ 29 29 public function test_mb_strlen_via_regex( $input_string, $expected_character_length ) { … … 34 34 35 35 /** 36 * @dataProvider utf8_string_lengths36 * @dataProvider data_utf8_string_lengths 37 37 */ 38 38 public function test_8bit_mb_strlen( $input_string, $expected_character_length, $expected_byte_length ) { … … 45 45 * @return array 46 46 */ 47 public function utf8_string_lengths() {47 public function data_utf8_string_lengths() { 48 48 return array( 49 49 array(
Note: See TracChangeset
for help on using the changeset viewer.