scuffed-code/icu4c/source/test/cintltst/cutiltst.c
Alan Liu d1e2c1e2e0 ICU-149 add basic UHashtable test
X-SVN-Rev: 1003
2000-03-28 22:08:29 +00:00

32 lines
958 B
C

/********************************************************************
* COPYRIGHT:
* Copyright (c) 1997-1999, 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 addUnicodeTest(TestNode**);
void addResourceBundleTest(TestNode**);
void addSCSUTest(TestNode** root);
void addHashtableTest(TestNode** root);
void addUtility(TestNode** root)
{
addLocaleTest(root);
addUnicodeTest(root);
addResourceBundleTest(root);
addSCSUTest(root);
addHashtableTest(root);
}