]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/test/cintltst/cutiltst.c
ICU-64232.0.1.tar.gz
[apple/icu.git] / icuSources / test / cintltst / cutiltst.c
index f0a36aca0b48522dc2bbbdce9b7f90f701d2f790..5f43c48ad2803dd98592beefefa55a280ebeb693 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-2003, International Business Machines Corporation and
+ * Copyright (c) 1997-2008, International Business Machines Corporation and
  * others. All Rights Reserved.
  ********************************************************************/
 /********************************************************************************
 #include "cintltst.h"
 
 void addLocaleTest(TestNode**);
+void addCLDRTest(TestNode**);
 void addUnicodeTest(TestNode**);
 void addUStringTest(TestNode**);
+void addCaseTest(TestNode**);
 void addResourceBundleTest(TestNode**);
 void addNEWResourceBundleTest(TestNode**);
 void addHashtableTest(TestNode** root);
 void addCStringTest(TestNode** root);
-void addMemoryStreamTest(TestNode** root);
 void addTrieTest(TestNode** root);
+void addTrie2Test(TestNode** root);
+void addUCPTrieTest(TestNode** root);
 void addEnumerationTest(TestNode** root);
 void addPosixTest(TestNode** root);
+void addSortTest(TestNode** root);
 
 void addUtility(TestNode** root);
 
 void addUtility(TestNode** root)
 {
+    addCStringTest(root);
     addTrieTest(root);
+    addTrie2Test(root);
+    addUCPTrieTest(root);
     addLocaleTest(root);
+    addCLDRTest(root);
     addUnicodeTest(root);
     addUStringTest(root);
+    addCaseTest(root);
     addResourceBundleTest(root);
     addNEWResourceBundleTest(root);
     addHashtableTest(root);
-    addCStringTest(root);
-    addMemoryStreamTest(root);
     addEnumerationTest(root);
     addPosixTest(root);
+    addSortTest(root);
 }