]> git.saurik.com Git - apple/icu.git/blame_incremental - icuSources/test/cintltst/cutiltst.c
ICU-8.11.tar.gz
[apple/icu.git] / icuSources / test / cintltst / cutiltst.c
... / ...
CommitLineData
1/********************************************************************
2 * COPYRIGHT:
3 * Copyright (c) 1997-2006, International Business Machines Corporation and
4 * others. All Rights Reserved.
5 ********************************************************************/
6/********************************************************************************
7*
8* File CUTILTST.C
9*
10* Modification History:
11* Name Description
12* Madhu Katragadda Creation
13*********************************************************************************
14*/
15#include "cintltst.h"
16
17void addLocaleTest(TestNode**);
18void addCLDRTest(TestNode**);
19void addUnicodeTest(TestNode**);
20void addUStringTest(TestNode**);
21void addCaseTest(TestNode**);
22void addResourceBundleTest(TestNode**);
23void addNEWResourceBundleTest(TestNode**);
24void addHashtableTest(TestNode** root);
25void addCStringTest(TestNode** root);
26void addTrieTest(TestNode** root);
27void addEnumerationTest(TestNode** root);
28void addPosixTest(TestNode** root);
29void addSortTest(TestNode** root);
30
31void addUtility(TestNode** root);
32
33void addUtility(TestNode** root)
34{
35 addCStringTest(root);
36 addTrieTest(root);
37 addLocaleTest(root);
38 addCLDRTest(root);
39 addUnicodeTest(root);
40 addUStringTest(root);
41 addCaseTest(root);
42 addResourceBundleTest(root);
43 addNEWResourceBundleTest(root);
44 addHashtableTest(root);
45 addEnumerationTest(root);
46 addPosixTest(root);
47 addSortTest(root);
48}