/********************************************************************
- * COPYRIGHT:
- * Copyright (c) 1997-2010, International Business Machines
+ * COPYRIGHT:
+ * Copyright (c) 1997-2013, International Business Machines
* Corporation and others. All Rights Reserved.
********************************************************************/
*/
#include "unicode/utypes.h"
+#include "unicode/localpointer.h"
#if !UCONFIG_NO_FORMATTING
#include "tufmtts.h" // TimeUnitTest
#include "locnmtst.h" // LocaleDisplayNamesTest
#include "dcfmtest.h" // DecimalFormatTest
+#include "listformattertest.h" // ListFormatterTest
+#include "regiontst.h" // RegionTest
+
+extern IntlTest *createCompactDecimalFormatTest();
+extern IntlTest *createGenderInfoTest();
#define TESTCLASS(id, TestClass) \
case id: \
#if !UCONFIG_NO_REGULAR_EXPRESSIONS
TESTCLASS(41,DecimalFormatTest);
#endif
-
+ TESTCLASS(42,ListFormatterTest);
+ case 43:
+ name = "GenderInfoTest";
+ if (exec) {
+ logln("GenderInfoTest test---");
+ logln((UnicodeString)"");
+ LocalPointer<IntlTest> test(createGenderInfoTest());
+ callTest(*test, par);
+ }
+ break;
+ case 44:
+ name = "CompactDecimalFormatTest";
+ if (exec) {
+ logln("CompactDecimalFormatTest test---");
+ logln((UnicodeString)"");
+ LocalPointer<IntlTest> test(createCompactDecimalFormatTest());
+ callTest(*test, par);
+ }
+ break;
+ TESTCLASS(45,RegionTest);
default: name = ""; break; //needed to end loop
}
if (exec) {