scuffed-code/icu4c/source/test/cintltst/cutiltst.c

47 lines
1.4 KiB
C
Raw Normal View History

/********************************************************************
* COPYRIGHT:
* Copyright (c) 1997-2003, International Business Machines Corporation and
* others. All Rights Reserved.
********************************************************************/
/********************************************************************************
1999-08-16 21:50:52 +00:00
*
* File CUTILTST.C
*
* Modification History:
* Name Description
1999-08-16 21:50:52 +00:00
* Madhu Katragadda Creation
*********************************************************************************
*/
#include "cintltst.h"
void addLocaleTest(TestNode**);
void addUnicodeTest(TestNode**);
void addUStringTest(TestNode**);
1999-08-16 21:50:52 +00:00
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);
1999-08-16 21:50:52 +00:00
void addUtility(TestNode** root);
1999-08-16 21:50:52 +00:00
void addUtility(TestNode** root)
{
addCStringTest(root);
addTrieTest(root);
1999-08-16 21:50:52 +00:00
addLocaleTest(root);
addUnicodeTest(root);
addUStringTest(root);
1999-08-16 21:50:52 +00:00
addResourceBundleTest(root);
addNEWResourceBundleTest(root);
addHashtableTest(root);
addMemoryStreamTest(root);
addEnumerationTest(root);
addPosixTest(root);
addSortTest(root);
1999-08-16 21:50:52 +00:00
}