mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 05:25:34 +00:00
Merge e7a62d4725
into 770c4b8042
This commit is contained in:
commit
6894900603
2 changed files with 11 additions and 0 deletions
|
@ -156,6 +156,7 @@ void NumberFormatTest::runIndexedTest( int32_t index, UBool exec, const char* &n
|
|||
TESTCASE_AUTO(TestFormatAttributes);
|
||||
TESTCASE_AUTO(TestFieldPositionIterator);
|
||||
TESTCASE_AUTO(TestDecimal);
|
||||
TESTCASE_AUTO(TestDecimalFormatParse7E);
|
||||
TESTCASE_AUTO(TestCurrencyFractionDigits);
|
||||
TESTCASE_AUTO(TestExponentParse);
|
||||
TESTCASE_AUTO(TestExplicitParents);
|
||||
|
@ -6980,6 +6981,15 @@ void NumberFormatTest::TestDecimal() {
|
|||
#endif
|
||||
|
||||
}
|
||||
void NumberFormatTest::TestDecimalFormatParse7E() {
|
||||
UErrorCode status = U_ZERO_ERROR;
|
||||
UnicodeString testdata = u"~";
|
||||
icu::Formattable result;
|
||||
icu::DecimalFormat dfmt(testdata, status);
|
||||
if (U_SUCCESS(status)) {
|
||||
dfmt.parse(testdata, result, status);
|
||||
}
|
||||
}
|
||||
|
||||
void NumberFormatTest::TestCurrencyFractionDigits() {
|
||||
UErrorCode status = U_ZERO_ERROR;
|
||||
|
|
|
@ -201,6 +201,7 @@ class NumberFormatTest: public CalendarTimeZoneTest {
|
|||
void TestLenientParse();
|
||||
|
||||
void TestDecimal();
|
||||
void TestDecimalFormatParse7E();
|
||||
void TestCurrencyFractionDigits();
|
||||
|
||||
void TestExponentParse();
|
||||
|
|
Loading…
Add table
Reference in a new issue