ICU-22885 Add test to show the problem of DecimalFormat

This commit is contained in:
Frank Tang 2024-09-11 16:16:43 -07:00
parent 6b00ed56d8
commit e7a62d4725
2 changed files with 11 additions and 0 deletions

View file

@ -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);
@ -6979,6 +6980,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;

View file

@ -201,6 +201,7 @@ class NumberFormatTest: public CalendarTimeZoneTest {
void TestLenientParse();
void TestDecimal();
void TestDecimalFormatParse7E();
void TestCurrencyFractionDigits();
void TestExponentParse();