]> git.saurik.com Git - apple/icu.git/blame - icuSources/test/cintltst/cutiltst.c
ICU-64232.0.1.tar.gz
[apple/icu.git] / icuSources / test / cintltst / cutiltst.c
CommitLineData
f3c0d7a5
A
1// © 2016 and later: Unicode, Inc. and others.
2// License & terms of use: http://www.unicode.org/copyright.html
b75a7d8f
A
3/********************************************************************
4 * COPYRIGHT:
729e4ab9 5 * Copyright (c) 1997-2008, International Business Machines Corporation and
b75a7d8f
A
6 * others. All Rights Reserved.
7 ********************************************************************/
8/********************************************************************************
9*
10* File CUTILTST.C
11*
12* Modification History:
13* Name Description
14* Madhu Katragadda Creation
15*********************************************************************************
16*/
17#include "cintltst.h"
18
19void addLocaleTest(TestNode**);
374ca955 20void addCLDRTest(TestNode**);
b75a7d8f
A
21void addUnicodeTest(TestNode**);
22void addUStringTest(TestNode**);
73c04bcf 23void addCaseTest(TestNode**);
b75a7d8f
A
24void addResourceBundleTest(TestNode**);
25void addNEWResourceBundleTest(TestNode**);
26void addHashtableTest(TestNode** root);
27void addCStringTest(TestNode** root);
b75a7d8f 28void addTrieTest(TestNode** root);
729e4ab9 29void addTrie2Test(TestNode** root);
3d1f044b 30void addUCPTrieTest(TestNode** root);
b75a7d8f
A
31void addEnumerationTest(TestNode** root);
32void addPosixTest(TestNode** root);
374ca955 33void addSortTest(TestNode** root);
b75a7d8f
A
34
35void addUtility(TestNode** root);
36
37void addUtility(TestNode** root)
38{
374ca955 39 addCStringTest(root);
b75a7d8f 40 addTrieTest(root);
729e4ab9 41 addTrie2Test(root);
3d1f044b 42 addUCPTrieTest(root);
b75a7d8f 43 addLocaleTest(root);
374ca955 44 addCLDRTest(root);
b75a7d8f
A
45 addUnicodeTest(root);
46 addUStringTest(root);
73c04bcf 47 addCaseTest(root);
b75a7d8f
A
48 addResourceBundleTest(root);
49 addNEWResourceBundleTest(root);
50 addHashtableTest(root);
b75a7d8f
A
51 addEnumerationTest(root);
52 addPosixTest(root);
374ca955 53 addSortTest(root);
b75a7d8f 54}