ICU-2039 format code coverage improvements

X-SVN-Rev: 12492
This commit is contained in:
Steven R. Loomis 2003-06-12 18:02:40 +00:00
parent 5ef2df4a28
commit 3402a7cc54
5 changed files with 81 additions and 2 deletions

View file

@ -12,6 +12,7 @@
#include "unicode/decimfmt.h"
#include "unicode/dcfmtsym.h"
#include "unicode/parseerr.h"
// This is an API test, not a unit test. It doesn't test very many cases, and doesn't
// try to test the full functionality. It just calls each function in the class and
@ -297,7 +298,15 @@ void IntlTestDecimalFormatAPI::testAPI(/*char *par*/)
errln((UnicodeString)"ERROR: toPattern() result did not match pattern applied");
}
UnicodeString p2("#,##0.0# FF;(#,##0.0# FF)");
if(pat.getSecondaryGroupingSize() != 0) {
errln("FAIL: Secondary Grouping Size should be 0, not %d\n", pat.getSecondaryGroupingSize());
}
if(pat.getGroupingSize() != 3) {
errln("FAIL: Primary Grouping Size should be 3, not %d\n", pat.getGroupingSize());
}
UnicodeString p2("#,##,##0.0# FF;(#,##,##0.0# FF)");
logln((UnicodeString)"Applying pattern " + p2);
status = U_ZERO_ERROR;
pat.applyLocalizedPattern(p2, status);
@ -311,6 +320,27 @@ void IntlTestDecimalFormatAPI::testAPI(/*char *par*/)
errln((UnicodeString)"ERROR: toLocalizedPattern() result did not match pattern applied");
}
status = U_ZERO_ERROR;
UParseError pe;
pat.applyLocalizedPattern(p2, pe, status);
if(U_FAILURE(status)) {
errln((UnicodeString)"ERROR: applyPattern((with ParseError)) failed with " + (int32_t) status);
}
UnicodeString s4;
s4 = pat.toLocalizedPattern(s3);
logln((UnicodeString)"Extracted pattern is " + s4);
if(s4 != p2) {
errln((UnicodeString)"ERROR: toLocalizedPattern(with ParseErr) result did not match pattern applied");
}
if(pat.getSecondaryGroupingSize() != 2) {
errln("FAIL: Secondary Grouping Size should be 2, not %d\n", pat.getSecondaryGroupingSize());
}
if(pat.getGroupingSize() != 3) {
errln("FAIL: Primary Grouping Size should be 3, not %d\n", pat.getGroupingSize());
}
// ======= Test getStaticClassID()
logln((UnicodeString)"Testing getStaticClassID()");

View file

@ -60,7 +60,7 @@ static UnicodeString calToStr(const Calendar & cal)
{
UnicodeString out;
UErrorCode status;
UErrorCode status = U_ZERO_ERROR;
int i;
for(i = 0;i<UCAL_FIELD_COUNT;i++) {
out += (UnicodeString("+") + fieldName((UCalendarDateFields)i) + "=" + cal.get((UCalendarDateFields)i, status) + UnicodeString(", "));

View file

@ -207,6 +207,26 @@ IntlTestRBNF::TestAPI() {
}
#endif
// test API
UnicodeString expected("four point five","");
logln("Testing format(double)");
UnicodeString result;
formatter->format(4.5,result);
if(result != expected) {
errln("Formatted 4.5, expected " + expected + " got " + result);
} else {
logln("Formatted 4.5, expected " + expected + " got " + result);
}
result.remove();
expected = "four";
formatter->format((long)4,result);
if(result != expected) {
errln("Formatted 4, expected " + expected + " got " + result);
} else {
logln("Formatted 4, expected " + expected + " got " + result);
}
// clean up
logln("Cleaning up");
delete formatter;

View file

@ -103,6 +103,13 @@ void ParsePositionTest::TestFieldPosition()
errln("*** FP constructor(int) or getField");
}
FieldPosition fpc(fp);
if (fpc.getField() == 7) {
logln("FP Constructor(FP&) passed");
} else {
errln("*** FP Constructor(FP&)");
}
FieldPosition fph( 3 );
if ( fph.getField() != 3)
errln("*** FP getField or heap constr.");

View file

@ -509,6 +509,28 @@ void TestChoiceFormat::TestClosures(void) {
errln("FAIL: fmt1 != fmt2");
}
int32_t i;
int32_t count2 = 0;
const double *limits2 = fmt2.getLimits(count2);
const UBool *closures2 = fmt2.getClosures(count2);
if(count2 != 6 || !limits2 || !closures2) {
errln("FAIL: couldn't get limits or closures");
} else {
for(i=0;i<count2;i++) {
logln("#%d: limit %g closed %s\n",
i,
limits2[i],
closures2[i] ?"T":"F");
}
if(limits[i] != limits[i]) {
errln("FAIL: limit #%d = %g, should be %g\n", i, limits2[i], limits[i]);
}
if((closures2[i]!=0) != (closures[i]!=0)) {
errln("FAIL: closure #%d = %s, should be %s\n", i, closures2[i]?"T":"F", closures[i]?"T":"F");
}
}
// Now test both format objects
UnicodeString exp[] = {
/*-0.5 => */ ",1)",