Browse Source

Add test for bug #76942

pull/3577/merge
Anatol Belski 8 years ago
parent
commit
c2a956de6f
  1. 33
      ext/intl/tests/bug76942_MessageFormatter.phpt

33
ext/intl/tests/bug76942_MessageFormatter.phpt

@ -0,0 +1,33 @@
--TEST--
Bug #76942 U_ARGUMENT_TYPE_MISMATCH
--SKIPIF--
<?php
if (!extension_loaded('intl'))
die('skip intl extension not enabled');
?>
--FILE--
<?php
$locale = 'nl';
$message = '{0,number,#,###.##} MB';
$vars = [
7.1234
];
$formatter = new MessageFormatter($locale, $message);
if (!$formatter) {
throw new Exception(intl_get_error_message(), intl_get_error_code());
}
$result = $formatter->format($vars);
if ($result === false) {
throw new Exception($formatter->getErrorMessage(), $formatter->getErrorCode());
}
var_dump($result);
?>
==DONE==
--EXPECT--
string(7) "7,12 MB"
==DONE==
Loading…
Cancel
Save