]> git.saurik.com Git - apple/icu.git/blame - icuSources/test/cintltst/calltest.c
ICU-3.13.tar.gz
[apple/icu.git] / icuSources / test / cintltst / calltest.c
CommitLineData
b75a7d8f
A
1/********************************************************************
2 * COPYRIGHT:
3 * Copyright (c) 1996-2001, International Business Machines Corporation and
4 * others. All Rights Reserved.
5 ********************************************************************/
6/********************************************************************************
7*
8* File CALLTEST.C
9*
10* Modification History:
11* Creation: Madhu Katragadda
12*********************************************************************************
13*/
14/* THE FILE WHERE ALL C API TESTS ARE ADDED TO THE ROOT */
15
16
17#include "cintltst.h"
18
19void addSetup(TestNode** root);
20void addUtility(TestNode** root);
21void addBreakIter(TestNode** root);
22void addStandardNamesTest(TestNode **root);
23void addFormatTest(TestNode** root);
24void addConvert(TestNode** root);
25void addCollTest(TestNode** root);
26void addComplexTest(TestNode** root);
27void addUDataTest(TestNode** root);
28void addUTF16Test(TestNode** root);
29void addUTF8Test(TestNode** root);
30void addUTransTest(TestNode** root);
31void addPUtilTest(TestNode** root);
32void addCompactArrayTest(TestNode** root);
33void addTestDeprecatedAPI(TestNode** root);
34void addUCharTransformTest(TestNode** root);
35void addUSetTest(TestNode** root);
36
37void addAllTests(TestNode** root)
38{
39 addSetup(root); /* Leave this test first! */
40 addUDataTest(root);
41 addPUtilTest(root);
42 addUTF16Test(root);
43 addUTF8Test(root);
44 addUtility(root);
45 addConvert(root);
46 addUCharTransformTest(root);
47 addStandardNamesTest(root);
48 addCompactArrayTest(root);
49#if !UCONFIG_NO_FORMATTING
50 addFormatTest(root);
51#endif
52#if !UCONFIG_NO_BREAK_ITERATION
53 addBreakIter(root);
54#endif
55#if !UCONFIG_NO_COLLATION
56 addCollTest(root);
57#endif
58 addComplexTest(root);
59#if !UCONFIG_NO_TRANSLITERATION
60 addUTransTest(root);
61#endif
62 addUSetTest(root);
63 addTestDeprecatedAPI(root);
64}
65