ICU-97 Put more detail into the error message

X-SVN-Rev: 3349
This commit is contained in:
George Rhoten 2001-01-02 22:56:30 +00:00
parent fba15a1c31
commit fa17ea33ee

View File

@ -223,7 +223,8 @@ NumberFormatTest::TestExponential(void)
}
for (v=0; v<lval_length; ++v)
{
UnicodeString s; (*(NumberFormat*)&fmt).format(lval[v], s);
UnicodeString s;
(*(NumberFormat*)&fmt).format(lval[v], s);
logln((UnicodeString)" " + lval[v] + "L -format-> " + s);
if (s != lvalFormat[v+ilval])
errln((UnicodeString)"ERROR: Expected " + lvalFormat[v+ilval]);
@ -243,7 +244,7 @@ NumberFormatTest::TestExponential(void)
errln((UnicodeString)"FAIL: Partial parse (" + pos.getIndex() + " chars) -> " + a);
}
else
errln((UnicodeString)"FAIL: Non-long Formattable returned");
errln((UnicodeString)"FAIL: Non-long Formattable returned for " + s);
}
ival += val_length;
ilval += lval_length;