ICU-3659 incidental cleanup

X-SVN-Rev: 15443
This commit is contained in:
Alan Liu 2004-05-20 22:02:34 +00:00
parent f503bc6a8e
commit 7816d4e3c4

View file

@ -34,13 +34,15 @@
void addNumForTest(TestNode** root);
#define TESTCASE(x) addTest(root, &x, "tsformat/cnumtst/" #x)
void addNumForTest(TestNode** root)
{
addTest(root, &TestNumberFormat, "tsformat/cnumtst/TestNumberFormat");
addTest(root, &TestSignificantDigits, "tsformat/cnumtst/TestSignificantDigits");
addTest(root, &TestNumberFormatPadding, "tsformat/cnumtst/TestNumberFormatPadding");
addTest(root, &TestInt64Format, "tsformat/cnumtst/TestInt64Format");
addTest(root, &TestRBNFFormat, "tsformat/cnumtst/TestRBNFFormat");
TESTCASE(TestNumberFormat);
TESTCASE(TestSignificantDigits);
TESTCASE(TestNumberFormatPadding);
TESTCASE(TestInt64Format);
TESTCASE(TestRBNFFormat);
}
/** copy src to dst with unicode-escapes for values < 0x20 and > 0x7e, null terminate if possible */
@ -1242,5 +1244,4 @@ static void TestRBNFFormat() {
}
}
#endif /* #if !UCONFIG_NO_FORMATTING */