]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/test/cintltst/cformtst.c
ICU-62135.0.1.tar.gz
[apple/icu.git] / icuSources / test / cintltst / cformtst.c
index 69a804ddd613fcea88201e91246298dbe01590bc..385bd3944e083ba53e3b2cd80c603051b18beabe 100644 (file)
@@ -1,6 +1,8 @@
+// © 2016 and later: Unicode, Inc. and others.
+// License & terms of use: http://www.unicode.org/copyright.html
 /********************************************************************
  * COPYRIGHT: 
- * Copyright (c) 1997-2007,2011,2013, International Business Machines
+ * Copyright (c) 1997-2016, International Business Machines
  * Corporation and others. All Rights Reserved.
  ********************************************************************/
 /********************************************************************************
@@ -26,6 +28,7 @@ void addCalTest(TestNode**);
 void addDateForTest(TestNode**);
 void addDateTimePatternGeneratorTest(TestNode**);
 void addDateIntervalFormatTest(TestNode**);
+void addRelativeDateFormatTest(TestNode**);
 void addNumForTest(TestNode**);
 void addMsgForTest(TestNode**);
 void addDateForRgrTest(TestNode**);
@@ -35,6 +38,8 @@ void addUtmsTest(TestNode**);
 void addCurrencyTest(TestNode**);
 void addPluralRulesTest(TestNode**);
 void addURegionTest(TestNode** root);
+void addUListFmtTest(TestNode** root);
+void addMeasureFormatTest(TestNode** root);
 
 void addFormatTest(TestNode** root);
 
@@ -44,6 +49,9 @@ void addFormatTest(TestNode** root)
     addDateForTest(root);
     addDateTimePatternGeneratorTest(root);
     addDateIntervalFormatTest(root);
+#if !UCONFIG_NO_BREAK_ITERATION
+    addRelativeDateFormatTest(root);
+#endif /* !UCONFIG_NO_BREAK_ITERATION */
     addNumForTest(root);
     addNumFrDepTest(root);
     addMsgForTest(root);
@@ -53,6 +61,8 @@ void addFormatTest(TestNode** root)
     addCurrencyTest(root);
     addPluralRulesTest(root);
     addURegionTest(root);
+    addUListFmtTest(root);
+    addMeasureFormatTest(root);
 }
 /*Internal functions used*/