]> git.saurik.com Git - apple/icu.git/blame - icuSources/test/cintltst/calltest.c
ICU-59173.0.1.tar.gz
[apple/icu.git] / icuSources / test / cintltst / calltest.c
CommitLineData
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
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);
f3c0d7a5 28void addBidiTransformTest(TestNode** root);
b75a7d8f
A
29void addUDataTest(TestNode** root);
30void addUTF16Test(TestNode** root);
31void addUTF8Test(TestNode** root);
32void addUTransTest(TestNode** root);
33void addPUtilTest(TestNode** root);
b75a7d8f
A
34void addUCharTransformTest(TestNode** root);
35void addUSetTest(TestNode** root);
374ca955
A
36void addUStringPrepTest(TestNode** root);
37void addIDNATest(TestNode** root);
38void addHeapMutexTest(TestNode **root);
39void addUTraceTest(TestNode** root);
40void addURegexTest(TestNode** root);
73c04bcf
A
41void addUTextTest(TestNode** root);
42void addUCsdetTest(TestNode** root);
729e4ab9
A
43void addCnvSelTest(TestNode** root);
44void addUSpoofTest(TestNode** root);
51004dcb
A
45#if !UCONFIG_NO_FORMATTING
46void addGendInfoForTest(TestNode** root);
47#endif
b75a7d8f
A
48
49void 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}