mirror of
https://github.com/reactos/reactos.git
synced 2024-11-11 01:04:11 +00:00
c424146e2c
svn path=/branches/cmake-bringup/; revision=48236
48 lines
1.4 KiB
C
48 lines
1.4 KiB
C
/********************************************************************
|
|
* COPYRIGHT:
|
|
* Copyright (c) 1997-2006, 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 addCLDRTest(TestNode**);
|
|
void addUnicodeTest(TestNode**);
|
|
void addUStringTest(TestNode**);
|
|
void addCaseTest(TestNode**);
|
|
void addResourceBundleTest(TestNode**);
|
|
void addNEWResourceBundleTest(TestNode**);
|
|
void addHashtableTest(TestNode** root);
|
|
void addCStringTest(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);
|
|
addCLDRTest(root);
|
|
addUnicodeTest(root);
|
|
addUStringTest(root);
|
|
addCaseTest(root);
|
|
addResourceBundleTest(root);
|
|
addNEWResourceBundleTest(root);
|
|
addHashtableTest(root);
|
|
addEnumerationTest(root);
|
|
addPosixTest(root);
|
|
addSortTest(root);
|
|
}
|