]> 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 bf8d4018695d846f29c782abb72215770a637863..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-2015, 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**);
@@ -36,6 +39,7 @@ void addCurrencyTest(TestNode**);
 void addPluralRulesTest(TestNode**);
 void addURegionTest(TestNode** root);
 void addUListFmtTest(TestNode** root);
+void addMeasureFormatTest(TestNode** root);
 
 void addFormatTest(TestNode** root);
 
@@ -45,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);
@@ -55,6 +62,7 @@ void addFormatTest(TestNode** root)
     addPluralRulesTest(root);
     addURegionTest(root);
     addUListFmtTest(root);
+    addMeasureFormatTest(root);
 }
 /*Internal functions used*/