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