]> git.saurik.com Git - apple/icu.git/blame_incremental - icuSources/test/cintltst/calltest.c
ICU-62107.0.1.tar.gz
[apple/icu.git] / icuSources / test / cintltst / calltest.c
... / ...
CommitLineData
1// © 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
48void addUNumberFormatterTest(TestNode** root);
49
50void addAllTests(TestNode** root)
51{
52 addCnvSelTest(root);
53 addUDataTest(root);
54 addHeapMutexTest(root);
55 addUTF16Test(root);
56 addUTF8Test(root);
57 addUtility(root);
58 addUTraceTest(root);
59 addUTextTest(root);
60 addConvert(root);
61 addUCharTransformTest(root);
62 addStandardNamesTest(root);
63 addUCsdetTest(root);
64 addComplexTest(root);
65 addBidiTransformTest(root);
66 addUSetTest(root);
67#if !UCONFIG_NO_IDNA
68 addUStringPrepTest(root);
69 addIDNATest(root);
70#endif
71#if !UCONFIG_NO_REGULAR_EXPRESSIONS
72 addURegexTest(root);
73#endif
74#if !UCONFIG_NO_BREAK_ITERATION
75 addBreakIter(root);
76#endif
77#if !UCONFIG_NO_FORMATTING
78 addFormatTest(root);
79#endif
80#if !UCONFIG_NO_COLLATION
81 addCollTest(root);
82#endif
83#if !UCONFIG_NO_TRANSLITERATION
84 addUTransTest(root);
85#endif
86#if !UCONFIG_NO_REGULAR_EXPRESSIONS && !UCONFIG_NO_NORMALIZATION
87 addUSpoofTest(root);
88#endif
89 addPUtilTest(root);
90#if !UCONFIG_NO_FORMATTING
91 addGendInfoForTest(root);
92 addUNumberFormatterTest(root);
93#endif
94}