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
21void addUtility(TestNode** root);
22void addBreakIter(TestNode** root);
23void addStandardNamesTest(TestNode **root);
24void addFormatTest(TestNode** root);
25void addConvert(TestNode** root);
26void addCollTest(TestNode** root);
27void addComplexTest(TestNode** root);
28void addBidiTransformTest(TestNode** root);
29void addUDataTest(TestNode** root);
30void addUTF16Test(TestNode** root);
31void addUTF8Test(TestNode** root);
32void addUTransTest(TestNode** root);
33void addPUtilTest(TestNode** root);
34void addUCharTransformTest(TestNode** root);
35void addUSetTest(TestNode** root);
36void addUStringPrepTest(TestNode** root);
37void addIDNATest(TestNode** root);
38void addHeapMutexTest(TestNode **root);
39void addUTraceTest(TestNode** root);
40void addURegexTest(TestNode** root);
41void addUTextTest(TestNode** root);
42void addUCsdetTest(TestNode** root);
43void addCnvSelTest(TestNode** root);
44void addUSpoofTest(TestNode** root);
45#if !UCONFIG_NO_FORMATTING
46void addGendInfoForTest(TestNode** root);
47#endif
48
49void 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}
93