php-8.0.30-src/ext/intl/tests/breakiter_getPartsIterator_...

22 lines
556 B
PHP

--TEST--
IntlBreakIterator::getPartsIterator(): bad args
--SKIPIF--
<?php
if (!extension_loaded('intl'))
die('skip intl extension not enabled');
--FILE--
<?php
ini_set("intl.default_locale", "pt_PT");
$it = IntlBreakIterator::createWordInstance(NULL);
try {
var_dump($it->getPartsIterator(-1));
} catch(\ValueError $e) {
echo $e->getMessage() . \PHP_EOL;
}
?>
--EXPECT--
IntlBreakIterator::getPartsIterator(): Argument #1 ($type) must be one of IntlPartsIterator::KEY_SEQUENTIAL, IntlPartsIterator::KEY_LEFT, or IntlPartsIterator::KEY_RIGHT