php-src/ext/intl/tests/breakiter_factories_basic.phpt
Nikita Popov c5401854fc Run tidy
This should fix most of the remaining issues with tabs and spaces
being mixed in tests.
2020-09-18 14:28:32 +02:00

41 lines
884 B
PHP

--TEST--
IntlBreakIterator factories: basic tests
--SKIPIF--
<?php
if (!extension_loaded('intl'))
die('skip intl extension not enabled');
--FILE--
<?php
ini_set("intl.error_level", E_WARNING);
ini_set("intl.default_locale", "ja");
$m = array('createWordInstance', 'createLineInstance', 'createCharacterInstance',
'createSentenceInstance', 'createTitleInstance');
$t = 'Frase 1... Frase 2';
foreach ($m as $method) {
echo "===== $method =====\n";
$o1 = IntlBreakIterator::$method('ja');
$o2 = IntlBreakIterator::$method(NULL);
$o3 = IntlBreakIterator::$method();
var_dump($o1 == $o2 && $o2 == $o3);
echo "\n";
}
?>
--EXPECT--
===== createWordInstance =====
bool(true)
===== createLineInstance =====
bool(true)
===== createCharacterInstance =====
bool(true)
===== createSentenceInstance =====
bool(true)
===== createTitleInstance =====
bool(true)