d1e2c1e2e0
X-SVN-Rev: 1003
32 lines
958 B
C
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);
|
|
}
|
|
|