You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.7 KiB
55 lines
1.7 KiB
// © 2016 and later: Unicode, Inc. and others.
|
|
// License & terms of use: http://www.unicode.org/copyright.html
|
|
/********************************************************************
|
|
* COPYRIGHT:
|
|
* Copyright (c) 1997-2008, 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 addTrie2Test(TestNode** root);
|
|
void addUCPTrieTest(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);
|
|
addTrie2Test(root);
|
|
addUCPTrieTest(root);
|
|
addLocaleTest(root);
|
|
addCLDRTest(root);
|
|
addUnicodeTest(root);
|
|
addUStringTest(root);
|
|
addCaseTest(root);
|
|
addResourceBundleTest(root);
|
|
addNEWResourceBundleTest(root);
|
|
addHashtableTest(root);
|
|
addEnumerationTest(root);
|
|
addPosixTest(root);
|
|
addSortTest(root);
|
|
}
|