]>
Commit | Line | Data |
---|---|---|
f3c0d7a5 A |
1 | // © 2016 and later: Unicode, Inc. and others. |
2 | // License & terms of use: http://www.unicode.org/copyright.html | |
b75a7d8f A |
3 | /******************************************************************** |
4 | * COPYRIGHT: | |
729e4ab9 | 5 | * Copyright (c) 1997-2008, International Business Machines Corporation and |
b75a7d8f A |
6 | * others. All Rights Reserved. |
7 | ********************************************************************/ | |
8 | /******************************************************************************** | |
9 | * | |
10 | * File CUTILTST.C | |
11 | * | |
12 | * Modification History: | |
13 | * Name Description | |
14 | * Madhu Katragadda Creation | |
15 | ********************************************************************************* | |
16 | */ | |
17 | #include "cintltst.h" | |
18 | ||
19 | void addLocaleTest(TestNode**); | |
374ca955 | 20 | void addCLDRTest(TestNode**); |
b75a7d8f A |
21 | void addUnicodeTest(TestNode**); |
22 | void addUStringTest(TestNode**); | |
73c04bcf | 23 | void addCaseTest(TestNode**); |
b75a7d8f A |
24 | void addResourceBundleTest(TestNode**); |
25 | void addNEWResourceBundleTest(TestNode**); | |
26 | void addHashtableTest(TestNode** root); | |
27 | void addCStringTest(TestNode** root); | |
b75a7d8f | 28 | void addTrieTest(TestNode** root); |
729e4ab9 | 29 | void addTrie2Test(TestNode** root); |
b75a7d8f A |
30 | void addEnumerationTest(TestNode** root); |
31 | void addPosixTest(TestNode** root); | |
374ca955 | 32 | void addSortTest(TestNode** root); |
b75a7d8f A |
33 | |
34 | void addUtility(TestNode** root); | |
35 | ||
36 | void addUtility(TestNode** root) | |
37 | { | |
374ca955 | 38 | addCStringTest(root); |
b75a7d8f | 39 | addTrieTest(root); |
729e4ab9 | 40 | addTrie2Test(root); |
b75a7d8f | 41 | addLocaleTest(root); |
374ca955 | 42 | addCLDRTest(root); |
b75a7d8f A |
43 | addUnicodeTest(root); |
44 | addUStringTest(root); | |
73c04bcf | 45 | addCaseTest(root); |
b75a7d8f A |
46 | addResourceBundleTest(root); |
47 | addNEWResourceBundleTest(root); | |
48 | addHashtableTest(root); | |
b75a7d8f A |
49 | addEnumerationTest(root); |
50 | addPosixTest(root); | |
374ca955 | 51 | addSortTest(root); |
b75a7d8f | 52 | } |