2000-01-15 02:00:06 +00:00
|
|
|
/********************************************************************
|
|
|
|
* COPYRIGHT:
|
|
|
|
* Copyright (c) 1997-1999, International Business Machines Corporation and
|
|
|
|
* others. All Rights Reserved.
|
|
|
|
********************************************************************/
|
|
|
|
/********************************************************************************
|
1999-08-16 21:50:52 +00:00
|
|
|
*
|
|
|
|
* File CUTILTST.C
|
|
|
|
*
|
|
|
|
* Modification History:
|
|
|
|
* Name Description
|
|
|
|
* Madhu Katragadda Creation
|
|
|
|
*********************************************************************************
|
|
|
|
*/
|
|
|
|
#include "cintltst.h"
|
|
|
|
|
|
|
|
void addLocaleTest(TestNode**);
|
|
|
|
void addUnicodeTest(TestNode**);
|
|
|
|
void addResourceBundleTest(TestNode**);
|
2000-05-15 18:39:17 +00:00
|
|
|
void addNEWResourceBundleTest(TestNode**);
|
1999-12-03 20:15:23 +00:00
|
|
|
void addSCSUTest(TestNode** root);
|
2000-03-28 22:08:29 +00:00
|
|
|
void addHashtableTest(TestNode** root);
|
2000-07-13 22:43:29 +00:00
|
|
|
void addCStringTest(TestNode** root);
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
void addUtility(TestNode** root)
|
|
|
|
{
|
|
|
|
addLocaleTest(root);
|
|
|
|
addUnicodeTest(root);
|
|
|
|
addResourceBundleTest(root);
|
2000-05-15 18:39:17 +00:00
|
|
|
addNEWResourceBundleTest(root);
|
1999-12-03 20:15:23 +00:00
|
|
|
addSCSUTest(root);
|
2000-03-28 22:08:29 +00:00
|
|
|
addHashtableTest(root);
|
2000-07-13 22:43:29 +00:00
|
|
|
addCStringTest(root);
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|