8e7d1112f4
X-SVN-Rev: 12752
47 lines
1.4 KiB
C
47 lines
1.4 KiB
C
/********************************************************************
|
|
* COPYRIGHT:
|
|
* Copyright (c) 1997-2003, 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 addUStringTest(TestNode**);
|
|
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);
|
|
|
|
void addUtility(TestNode** root);
|
|
|
|
void addUtility(TestNode** root)
|
|
{
|
|
addCStringTest(root);
|
|
addTrieTest(root);
|
|
addLocaleTest(root);
|
|
addUnicodeTest(root);
|
|
addUStringTest(root);
|
|
addResourceBundleTest(root);
|
|
addNEWResourceBundleTest(root);
|
|
addHashtableTest(root);
|
|
addMemoryStreamTest(root);
|
|
addEnumerationTest(root);
|
|
addPosixTest(root);
|
|
addSortTest(root);
|
|
}
|