php-src/ext/intl/tests/breakiter_createCodePointInstance_basic.phpt
Gina Peter Banyard c42e6d62d8
ext/intl: modernize tests (#19392)
This is effectively removing ZPP tests, enabling warnings, and moving INI settings into the INI PHPT block
2025-08-06 23:33:48 +01:00

39 lines
658 B
PHP

--TEST--
IntlBreakIterator::createCodePointInstance(): basic test
--EXTENSIONS--
intl
--INI--
intl.default_locale=pt_PT
--FILE--
<?php
$text = 'ตัวอย่างข้อความ';
$codepoint_it = IntlBreakIterator::createCodePointInstance();
var_dump(get_class($codepoint_it));
$codepoint_it->setText($text);
print_r(iterator_to_array($codepoint_it));
?>
--EXPECT--
string(26) "IntlCodePointBreakIterator"
Array
(
[0] => 0
[1] => 3
[2] => 6
[3] => 9
[4] => 12
[5] => 15
[6] => 18
[7] => 21
[8] => 24
[9] => 27
[10] => 30
[11] => 33
[12] => 36
[13] => 39
[14] => 42
[15] => 45
)