]> git.saurik.com Git - apple/icu.git/blob - icuSources/test/cintltst/calltest.c
ICU-6.2.14.tar.gz
[apple/icu.git] / icuSources / test / cintltst / calltest.c
1 /********************************************************************
2 * COPYRIGHT:
3 * Copyright (c) 1996-2004, International Business Machines Corporation and
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
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);
31 void addCompactArrayTest(TestNode** root);
32 void addTestDeprecatedAPI(TestNode** root);
33 void addUCharTransformTest(TestNode** root);
34 void addUSetTest(TestNode** root);
35 void addUStringPrepTest(TestNode** root);
36 void addIDNATest(TestNode** root);
37 void addHeapMutexTest(TestNode **root);
38 void addUTraceTest(TestNode** root);
39 void addURegexTest(TestNode** root);
40
41 void addAllTests(TestNode** root)
42 {
43 addUDataTest(root);
44 addPUtilTest(root);
45 addUTF16Test(root);
46 addUTF8Test(root);
47 addUtility(root);
48 addConvert(root);
49 addUCharTransformTest(root);
50 addStandardNamesTest(root);
51 addCompactArrayTest(root);
52 #if !UCONFIG_NO_FORMATTING
53 addFormatTest(root);
54 #endif
55 #if !UCONFIG_NO_BREAK_ITERATION
56 addBreakIter(root);
57 #endif
58 #if !UCONFIG_NO_COLLATION
59 addCollTest(root);
60 #endif
61 addComplexTest(root);
62 #if !UCONFIG_NO_TRANSLITERATION
63 addUTransTest(root);
64 #endif
65 addUSetTest(root);
66 addTestDeprecatedAPI(root);
67 #if !UCONFIG_NO_IDNA
68 addUStringPrepTest(root);
69 addIDNATest(root);
70 #endif
71 addHeapMutexTest(root);
72 addUTraceTest(root);
73 #if !UCONFIG_NO_REGULAR_EXPRESSIONS
74 addURegexTest(root);
75 #endif
76 }
77