]>
Commit | Line | Data |
---|---|---|
b75a7d8f A |
1 | /******************************************************************** |
2 | * COPYRIGHT: | |
729e4ab9 | 3 | * Copyright (c) 1997-2008, International Business Machines Corporation and |
b75a7d8f A |
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**); | |
374ca955 | 18 | void addCLDRTest(TestNode**); |
b75a7d8f A |
19 | void addUnicodeTest(TestNode**); |
20 | void addUStringTest(TestNode**); | |
73c04bcf | 21 | void addCaseTest(TestNode**); |
b75a7d8f A |
22 | void addResourceBundleTest(TestNode**); |
23 | void addNEWResourceBundleTest(TestNode**); | |
24 | void addHashtableTest(TestNode** root); | |
25 | void addCStringTest(TestNode** root); | |
b75a7d8f | 26 | void addTrieTest(TestNode** root); |
729e4ab9 | 27 | void addTrie2Test(TestNode** root); |
b75a7d8f A |
28 | void addEnumerationTest(TestNode** root); |
29 | void addPosixTest(TestNode** root); | |
374ca955 | 30 | void addSortTest(TestNode** root); |
b75a7d8f A |
31 | |
32 | void addUtility(TestNode** root); | |
33 | ||
34 | void addUtility(TestNode** root) | |
35 | { | |
374ca955 | 36 | addCStringTest(root); |
b75a7d8f | 37 | addTrieTest(root); |
729e4ab9 | 38 | addTrie2Test(root); |
b75a7d8f | 39 | addLocaleTest(root); |
374ca955 | 40 | addCLDRTest(root); |
b75a7d8f A |
41 | addUnicodeTest(root); |
42 | addUStringTest(root); | |
73c04bcf | 43 | addCaseTest(root); |
b75a7d8f A |
44 | addResourceBundleTest(root); |
45 | addNEWResourceBundleTest(root); | |
46 | addHashtableTest(root); | |
b75a7d8f A |
47 | addEnumerationTest(root); |
48 | addPosixTest(root); | |
374ca955 | 49 | addSortTest(root); |
b75a7d8f | 50 | } |