]>
git.saurik.com Git - apple/icu.git/blob - icuSources/test/cintltst/calltest.c
1 // © 2016 and later: Unicode, Inc. and others.
2 // License & terms of use: http://www.unicode.org/copyright.html
3 /********************************************************************
5 * Copyright (c) 1996-2012, International Business Machines Corporation and
6 * others. All Rights Reserved.
7 ********************************************************************/
8 /********************************************************************************
12 * Modification History:
13 * Creation: Madhu Katragadda
14 *********************************************************************************
16 /* THE FILE WHERE ALL C API TESTS ARE ADDED TO THE ROOT */
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
);
49 void addAllTests(TestNode
** root
)
53 addHeapMutexTest(root
);
60 addUCharTransformTest(root
);
61 addStandardNamesTest(root
);
64 addBidiTransformTest(root
);
67 addUStringPrepTest(root
);
70 #if !UCONFIG_NO_REGULAR_EXPRESSIONS
73 #if !UCONFIG_NO_BREAK_ITERATION
76 #if !UCONFIG_NO_FORMATTING
79 #if !UCONFIG_NO_COLLATION
82 #if !UCONFIG_NO_TRANSLITERATION
85 #if !UCONFIG_NO_REGULAR_EXPRESSIONS && !UCONFIG_NO_NORMALIZATION
89 #if !UCONFIG_NO_FORMATTING
90 addGendInfoForTest(root
);