]>
Commit | Line | Data |
---|---|---|
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 | ||
19 | void addSetup(TestNode** root); | |
20 | void addUtility(TestNode** root); | |
21 | void addBreakIter(TestNode** root); | |
22 | void addStandardNamesTest(TestNode **root); | |
23 | void addFormatTest(TestNode** root); | |
24 | void addConvert(TestNode** root); | |
25 | void addCollTest(TestNode** root); | |
26 | void addComplexTest(TestNode** root); | |
27 | void addUDataTest(TestNode** root); | |
28 | void addUTF16Test(TestNode** root); | |
29 | void addUTF8Test(TestNode** root); | |
30 | void addUTransTest(TestNode** root); | |
31 | void addPUtilTest(TestNode** root); | |
32 | void addCompactArrayTest(TestNode** root); | |
33 | void addTestDeprecatedAPI(TestNode** root); | |
34 | void addUCharTransformTest(TestNode** root); | |
35 | void addUSetTest(TestNode** root); | |
36 | ||
37 | void 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 |