0b6e5e3b68
X-SVN-Rev: 290
37 lines
1.5 KiB
C
37 lines
1.5 KiB
C
/*
|
|
*****************************************************************************************
|
|
* *
|
|
* COPYRIGHT: *
|
|
* (C) Copyright Taligent, Inc., 1996 *
|
|
* (C) Copyright International Business Machines Corporation, 1999 *
|
|
* Licensed Material - Program-Property of IBM - All Rights Reserved. *
|
|
* US Government Users Restricted Rights - Use, duplication, or disclosure *
|
|
* restricted by GSA ADP Schedule Contract with IBM Corp. *
|
|
* *
|
|
*****************************************************************************************
|
|
********************************************************************************
|
|
*
|
|
* 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 addUtility(TestNode** root)
|
|
{
|
|
addLocaleTest(root);
|
|
addUnicodeTest(root);
|
|
addResourceBundleTest(root);
|
|
addSCSUTest(root);
|
|
|
|
}
|
|
|