]> git.saurik.com Git - apple/icu.git/blob - icuSources/test/cintltst/cutiltst.c
ICU-6.2.22.tar.gz
[apple/icu.git] / icuSources / test / cintltst / cutiltst.c
1 /********************************************************************
2 * COPYRIGHT:
3 * Copyright (c) 1997-2004, International Business Machines Corporation and
4 * others. All Rights Reserved.
5 ********************************************************************/
6 /********************************************************************************
7 *
8 * File CUTILTST.C
9 *
10 * Modification History:
11 * Name Description
12 * Madhu Katragadda Creation
13 *********************************************************************************
14 */
15 #include "cintltst.h"
16
17 void addLocaleTest(TestNode**);
18 void addCLDRTest(TestNode**);
19 void addUnicodeTest(TestNode**);
20 void addUStringTest(TestNode**);
21 void addResourceBundleTest(TestNode**);
22 void addNEWResourceBundleTest(TestNode**);
23 void addHashtableTest(TestNode** root);
24 void addCStringTest(TestNode** root);
25 void addTrieTest(TestNode** root);
26 void addEnumerationTest(TestNode** root);
27 void addPosixTest(TestNode** root);
28 void addSortTest(TestNode** root);
29
30 void addUtility(TestNode** root);
31
32 void addUtility(TestNode** root)
33 {
34 addCStringTest(root);
35 addTrieTest(root);
36 addLocaleTest(root);
37 addCLDRTest(root);
38 addUnicodeTest(root);
39 addUStringTest(root);
40 addResourceBundleTest(root);
41 addNEWResourceBundleTest(root);
42 addHashtableTest(root);
43 addEnumerationTest(root);
44 addPosixTest(root);
45 addSortTest(root);
46 }