]> git.saurik.com Git - apple/icu.git/blame - icuSources/test/cintltst/cutiltst.c
ICU-6.2.22.tar.gz
[apple/icu.git] / icuSources / test / cintltst / cutiltst.c
CommitLineData
b75a7d8f
A
1/********************************************************************
2 * COPYRIGHT:
374ca955 3 * Copyright (c) 1997-2004, International Business Machines Corporation and
b75a7d8f
A
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**);
374ca955 18void addCLDRTest(TestNode**);
b75a7d8f
A
19void addUnicodeTest(TestNode**);
20void addUStringTest(TestNode**);
21void addResourceBundleTest(TestNode**);
22void addNEWResourceBundleTest(TestNode**);
23void addHashtableTest(TestNode** root);
24void addCStringTest(TestNode** root);
b75a7d8f
A
25void addTrieTest(TestNode** root);
26void addEnumerationTest(TestNode** root);
27void addPosixTest(TestNode** root);
374ca955 28void addSortTest(TestNode** root);
b75a7d8f
A
29
30void addUtility(TestNode** root);
31
32void addUtility(TestNode** root)
33{
374ca955 34 addCStringTest(root);
b75a7d8f
A
35 addTrieTest(root);
36 addLocaleTest(root);
374ca955 37 addCLDRTest(root);
b75a7d8f
A
38 addUnicodeTest(root);
39 addUStringTest(root);
40 addResourceBundleTest(root);
41 addNEWResourceBundleTest(root);
42 addHashtableTest(root);
b75a7d8f
A
43 addEnumerationTest(root);
44 addPosixTest(root);
374ca955 45 addSortTest(root);
b75a7d8f 46}