]> git.saurik.com Git - apple/icu.git/blame_incremental - icuSources/test/cintltst/cutiltst.c
ICU-3.13.tar.gz
[apple/icu.git] / icuSources / test / cintltst / cutiltst.c
... / ...
CommitLineData
1/********************************************************************
2 * COPYRIGHT:
3 * Copyright (c) 1997-2003, 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 addUnicodeTest(TestNode**);
19void addUStringTest(TestNode**);
20void addResourceBundleTest(TestNode**);
21void addNEWResourceBundleTest(TestNode**);
22void addHashtableTest(TestNode** root);
23void addCStringTest(TestNode** root);
24void addMemoryStreamTest(TestNode** root);
25void addTrieTest(TestNode** root);
26void addEnumerationTest(TestNode** root);
27void addPosixTest(TestNode** root);
28
29void addUtility(TestNode** root);
30
31void addUtility(TestNode** root)
32{
33 addTrieTest(root);
34 addLocaleTest(root);
35 addUnicodeTest(root);
36 addUStringTest(root);
37 addResourceBundleTest(root);
38 addNEWResourceBundleTest(root);
39 addHashtableTest(root);
40 addCStringTest(root);
41 addMemoryStreamTest(root);
42 addEnumerationTest(root);
43 addPosixTest(root);
44}