X-Git-Url: https://git.saurik.com/apple/icu.git/blobdiff_plain/729e4ab9bc6618bc3d8a898e575df7f4019e29ca..e4f10fab0c078f399c9deef476d9c9b73b47dff8:/icuSources/test/intltest/itformat.cpp diff --git a/icuSources/test/intltest/itformat.cpp b/icuSources/test/intltest/itformat.cpp index 467b6b20..aa919d34 100644 --- a/icuSources/test/intltest/itformat.cpp +++ b/icuSources/test/intltest/itformat.cpp @@ -1,6 +1,6 @@ /******************************************************************** - * COPYRIGHT: - * Copyright (c) 1997-2010, International Business Machines + * COPYRIGHT: + * Copyright (c) 1997-2013, International Business Machines * Corporation and others. All Rights Reserved. ********************************************************************/ @@ -9,6 +9,7 @@ */ #include "unicode/utypes.h" +#include "unicode/localpointer.h" #if !UCONFIG_NO_FORMATTING @@ -55,6 +56,11 @@ #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: \ @@ -131,7 +137,26 @@ void IntlTestFormat::runIndexedTest( int32_t index, UBool exec, const char* &nam #if !UCONFIG_NO_REGULAR_EXPRESSIONS TESTCLASS(41,DecimalFormatTest); #endif - + TESTCLASS(42,ListFormatterTest); + case 43: + name = "GenderInfoTest"; + if (exec) { + logln("GenderInfoTest test---"); + logln((UnicodeString)""); + LocalPointer test(createGenderInfoTest()); + callTest(*test, par); + } + break; + case 44: + name = "CompactDecimalFormatTest"; + if (exec) { + logln("CompactDecimalFormatTest test---"); + logln((UnicodeString)""); + LocalPointer test(createCompactDecimalFormatTest()); + callTest(*test, par); + } + break; + TESTCLASS(45,RegionTest); default: name = ""; break; //needed to end loop } if (exec) {