scuffed-code/icu4c/source/test/cintltst/cutiltst.c
George Rhoten 08382a4b07 ICU-3938 Related to cldrbug 235.
Separate cldr tests from cloctst, and depend on testLocale instead of root for testing

X-SVN-Rev: 16253
2004-09-03 20:51:11 +00:00

49 lines
1.5 KiB
C

/********************************************************************
* COPYRIGHT:
* Copyright (c) 1997-2003, International Business Machines Corporation and
* others. All Rights Reserved.
********************************************************************/
/********************************************************************************
*
* File CUTILTST.C
*
* Modification History:
* Name Description
* Madhu Katragadda Creation
*********************************************************************************
*/
#include "cintltst.h"
void addLocaleTest(TestNode**);
void addCLDRTest(TestNode**);
void addUnicodeTest(TestNode**);
void addUStringTest(TestNode**);
void addResourceBundleTest(TestNode**);
void addNEWResourceBundleTest(TestNode**);
void addHashtableTest(TestNode** root);
void addCStringTest(TestNode** root);
void addMemoryStreamTest(TestNode** root);
void addTrieTest(TestNode** root);
void addEnumerationTest(TestNode** root);
void addPosixTest(TestNode** root);
void addSortTest(TestNode** root);
void addUtility(TestNode** root);
void addUtility(TestNode** root)
{
addCStringTest(root);
addTrieTest(root);
addLocaleTest(root);
addCLDRTest(root);
addUnicodeTest(root);
addUStringTest(root);
addResourceBundleTest(root);
addNEWResourceBundleTest(root);
addHashtableTest(root);
addMemoryStreamTest(root);
addEnumerationTest(root);
addPosixTest(root);
addSortTest(root);
}