]>
Commit | Line | Data |
---|---|---|
1 | /******************************************************************** | |
2 | * COPYRIGHT: | |
3 | * Copyright (c) 1997-2003, 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 addUnicodeTest(TestNode**); | |
19 | void addUStringTest(TestNode**); | |
20 | void addResourceBundleTest(TestNode**); | |
21 | void addNEWResourceBundleTest(TestNode**); | |
22 | void addHashtableTest(TestNode** root); | |
23 | void addCStringTest(TestNode** root); | |
24 | void addMemoryStreamTest(TestNode** root); | |
25 | void addTrieTest(TestNode** root); | |
26 | void addEnumerationTest(TestNode** root); | |
27 | void addPosixTest(TestNode** root); | |
28 | ||
29 | void addUtility(TestNode** root); | |
30 | ||
31 | void addUtility(TestNode** root) | |
32 | { | |
33 | addTrieTest(root); | |
34 | addLocaleTest(root); | |
35 | addUnicodeTest(root); | |
36 | addUStringTest(root); | |
37 | addResourceBundleTest(root); | |
38 | addNEWResourceBundleTest(root); | |
39 | addHashtableTest(root); | |
40 | addCStringTest(root); | |
41 | addMemoryStreamTest(root); | |
42 | addEnumerationTest(root); | |
43 | addPosixTest(root); | |
44 | } |