]>
Commit | Line | Data |
---|---|---|
b75a7d8f A |
1 | /******************************************************************** |
2 | * COPYRIGHT: | |
73c04bcf | 3 | * Copyright (c) 1997-2006, 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 A |
26 | void addTrieTest(TestNode** root); |
27 | void addEnumerationTest(TestNode** root); | |
28 | void addPosixTest(TestNode** root); | |
374ca955 | 29 | void addSortTest(TestNode** root); |
b75a7d8f A |
30 | |
31 | void addUtility(TestNode** root); | |
32 | ||
33 | void addUtility(TestNode** root) | |
34 | { | |
374ca955 | 35 | addCStringTest(root); |
b75a7d8f A |
36 | addTrieTest(root); |
37 | addLocaleTest(root); | |
374ca955 | 38 | addCLDRTest(root); |
b75a7d8f A |
39 | addUnicodeTest(root); |
40 | addUStringTest(root); | |
73c04bcf | 41 | addCaseTest(root); |
b75a7d8f A |
42 | addResourceBundleTest(root); |
43 | addNEWResourceBundleTest(root); | |
44 | addHashtableTest(root); | |
b75a7d8f A |
45 | addEnumerationTest(root); |
46 | addPosixTest(root); | |
374ca955 | 47 | addSortTest(root); |
b75a7d8f | 48 | } |