]>
Commit | Line | Data |
---|---|---|
b75a7d8f A |
1 | /******************************************************************** |
2 | * COPYRIGHT: | |
729e4ab9 | 3 | * Copyright (c) 1996-2010, International Business Machines Corporation and |
b75a7d8f A |
4 | * others. All Rights Reserved. |
5 | ********************************************************************/ | |
6 | /******************************************************************************** | |
7 | * | |
8 | * File CALLTEST.C | |
9 | * | |
10 | * Modification History: | |
11 | * Creation: Madhu Katragadda | |
12 | ********************************************************************************* | |
13 | */ | |
14 | /* THE FILE WHERE ALL C API TESTS ARE ADDED TO THE ROOT */ | |
15 | ||
16 | ||
17 | #include "cintltst.h" | |
18 | ||
b75a7d8f A |
19 | void addUtility(TestNode** root); |
20 | void addBreakIter(TestNode** root); | |
21 | void addStandardNamesTest(TestNode **root); | |
22 | void addFormatTest(TestNode** root); | |
23 | void addConvert(TestNode** root); | |
24 | void addCollTest(TestNode** root); | |
25 | void addComplexTest(TestNode** root); | |
26 | void addUDataTest(TestNode** root); | |
27 | void addUTF16Test(TestNode** root); | |
28 | void addUTF8Test(TestNode** root); | |
29 | void addUTransTest(TestNode** root); | |
30 | void addPUtilTest(TestNode** root); | |
b75a7d8f A |
31 | void addUCharTransformTest(TestNode** root); |
32 | void addUSetTest(TestNode** root); | |
374ca955 A |
33 | void addUStringPrepTest(TestNode** root); |
34 | void addIDNATest(TestNode** root); | |
35 | void addHeapMutexTest(TestNode **root); | |
36 | void addUTraceTest(TestNode** root); | |
37 | void addURegexTest(TestNode** root); | |
73c04bcf A |
38 | void addUTextTest(TestNode** root); |
39 | void addUCsdetTest(TestNode** root); | |
729e4ab9 A |
40 | void addCnvSelTest(TestNode** root); |
41 | void addUSpoofTest(TestNode** root); | |
b75a7d8f A |
42 | |
43 | void addAllTests(TestNode** root) | |
44 | { | |
729e4ab9 | 45 | addCnvSelTest(root); |
b75a7d8f | 46 | addUDataTest(root); |
46f4442e | 47 | addHeapMutexTest(root); |
b75a7d8f A |
48 | addUTF16Test(root); |
49 | addUTF8Test(root); | |
50 | addUtility(root); | |
46f4442e A |
51 | addUTraceTest(root); |
52 | addUTextTest(root); | |
b75a7d8f A |
53 | addConvert(root); |
54 | addUCharTransformTest(root); | |
55 | addStandardNamesTest(root); | |
46f4442e A |
56 | addUCsdetTest(root); |
57 | addComplexTest(root); | |
58 | addUSetTest(root); | |
59 | #if !UCONFIG_NO_IDNA | |
60 | addUStringPrepTest(root); | |
61 | addIDNATest(root); | |
62 | #endif | |
63 | #if !UCONFIG_NO_REGULAR_EXPRESSIONS | |
64 | addURegexTest(root); | |
b75a7d8f A |
65 | #endif |
66 | #if !UCONFIG_NO_BREAK_ITERATION | |
67 | addBreakIter(root); | |
68 | #endif | |
46f4442e A |
69 | #if !UCONFIG_NO_FORMATTING |
70 | addFormatTest(root); | |
71 | #endif | |
b75a7d8f A |
72 | #if !UCONFIG_NO_COLLATION |
73 | addCollTest(root); | |
74 | #endif | |
b75a7d8f A |
75 | #if !UCONFIG_NO_TRANSLITERATION |
76 | addUTransTest(root); | |
77 | #endif | |
729e4ab9 A |
78 | #if !UCONFIG_NO_REGULAR_EXPRESSIONS && !UCONFIG_NO_NORMALIZATION |
79 | addUSpoofTest(root); | |
80 | #endif | |
81 | addPUtilTest(root); | |
b75a7d8f A |
82 | } |
83 |