Imported Upstream version 58.1
[platform/upstream/icu.git] / source / test / cintltst / calltest.c
1 // Copyright (C) 2016 and later: Unicode, Inc. and others.
2 // License & terms of use: http://www.unicode.org/copyright.html
3 /********************************************************************
4  * COPYRIGHT: 
5  * Copyright (c) 1996-2012, International Business Machines Corporation and
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
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);
28 void addBidiTransformTest(TestNode** root);
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);
34 void addUCharTransformTest(TestNode** root);
35 void addUSetTest(TestNode** root);
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);
41 void addUTextTest(TestNode** root);
42 void addUCsdetTest(TestNode** root);
43 void addCnvSelTest(TestNode** root);
44 void addUSpoofTest(TestNode** root);
45 #if !UCONFIG_NO_FORMATTING
46 void addGendInfoForTest(TestNode** root);
47 #endif
48
49 void addAllTests(TestNode** root)
50 {
51     addCnvSelTest(root);
52     addUDataTest(root);
53     addHeapMutexTest(root);
54     addUTF16Test(root);
55     addUTF8Test(root);
56     addUtility(root);
57     addUTraceTest(root);
58     addUTextTest(root);
59     addConvert(root);
60     addUCharTransformTest(root);
61     addStandardNamesTest(root);
62     addUCsdetTest(root);
63     addComplexTest(root);
64     addBidiTransformTest(root);
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);
72 #endif
73 #if !UCONFIG_NO_BREAK_ITERATION
74     addBreakIter(root);
75 #endif
76 #if !UCONFIG_NO_FORMATTING
77     addFormatTest(root);
78 #endif
79 #if !UCONFIG_NO_COLLATION
80     addCollTest(root);
81 #endif
82 #if !UCONFIG_NO_TRANSLITERATION
83     addUTransTest(root);
84 #endif
85 #if !UCONFIG_NO_REGULAR_EXPRESSIONS && !UCONFIG_NO_NORMALIZATION
86     addUSpoofTest(root);
87 #endif
88     addPUtilTest(root);
89 #if !UCONFIG_NO_FORMATTING
90     addGendInfoForTest(root);
91 #endif
92 }