X-Git-Url: https://git.saurik.com/apple/icu.git/blobdiff_plain/b331163bffd790ced0e88b73f44f86d49ccc48a5..ef6cf650f4a75c3f97de06b51fa104f2069b9ea2:/icuSources/test/intltest/itformat.cpp diff --git a/icuSources/test/intltest/itformat.cpp b/icuSources/test/intltest/itformat.cpp index 04043b5e..deae7ba0 100644 --- a/icuSources/test/intltest/itformat.cpp +++ b/icuSources/test/intltest/itformat.cpp @@ -1,6 +1,6 @@ /******************************************************************** * COPYRIGHT: - * Copyright (c) 1997-2014, International Business Machines + * Copyright (c) 1997-2015, International Business Machines * Corporation and others. All Rights Reserved. ********************************************************************/ @@ -53,7 +53,6 @@ #include "plurfmts.h" // PluralFormatTest #include "selfmts.h" // PluralFormatTest #include "dtifmtts.h" // DateIntervalFormatTest -#include "tufmtts.h" // TimeUnitTest #include "locnmtst.h" // LocaleDisplayNamesTest #include "dcfmtest.h" // DecimalFormatTest #include "listformattertest.h" // ListFormatterTest @@ -64,9 +63,12 @@ extern IntlTest *createGenderInfoTest(); #if !UCONFIG_NO_BREAK_ITERATION extern IntlTest *createRelativeDateTimeFormatterTest(); #endif +extern IntlTest *createTimeUnitTest(); extern IntlTest *createMeasureFormatTest(); extern IntlTest *createNumberFormatSpecificationTest(); extern IntlTest *createScientificNumberFormatterTest(); +extern IntlTest *createNumberFormat2Test(); + #define TESTCLASS(id, TestClass) \ case id: \ @@ -137,7 +139,15 @@ void IntlTestFormat::runIndexedTest( int32_t index, UBool exec, const char* &nam TESTCLASS(35,PluralRulesTest); TESTCLASS(36,PluralFormatTest); TESTCLASS(37,DateIntervalFormatTest); - TESTCLASS(38,TimeUnitTest); + case 38: + name = "TimeUnitTest"; + if (exec) { + logln("TimeUnitTest test---"); + logln((UnicodeString)""); + LocalPointer test(createTimeUnitTest()); + callTest(*test, par); + } + break; TESTCLASS(39,SelectFormatTest); TESTCLASS(40,LocaleDisplayNamesTest); #if !UCONFIG_NO_REGULAR_EXPRESSIONS @@ -201,6 +211,15 @@ void IntlTestFormat::runIndexedTest( int32_t index, UBool exec, const char* &nam callTest(*test, par); } break; + case 50: + name = "NumberFormat2Test"; + if (exec) { + logln("NumberFormat2Test test---"); + logln((UnicodeString)""); + LocalPointer test(createNumberFormat2Test()); + callTest(*test, par); + } + break; default: name = ""; break; //needed to end loop } if (exec) {