1 /******************************************************************** 2 * COPYRIGHT: 3 * Copyright (c) 1997-2006, International Business Machines Corporation and 4 * others. All Rights Reserved. 5 ********************************************************************/ 6 /******************************************************************************** 7 * 8 * File CUTILTST.C 9 * 10 * Modification History: 11 * Name Description 12 * Madhu Katragadda Creation 13 ********************************************************************************* 14 */ 15 #include "cintltst.h" 16 17 void addLocaleTest(TestNode**); 18 void addCLDRTest(TestNode**); 19 void addUnicodeTest(TestNode**); 20 void addUStringTest(TestNode**); 21 void addCaseTest(TestNode**); 22 void addResourceBundleTest(TestNode**); 23 void addNEWResourceBundleTest(TestNode**); 24 void addHashtableTest(TestNode** root); 25 void addCStringTest(TestNode** root); 26 void addTrieTest(TestNode** root); 27 void addEnumerationTest(TestNode** root); 28 void addPosixTest(TestNode** root); 29 void addSortTest(TestNode** root); 30 31 void addUtility(TestNode** root); 32 addUtility(TestNode ** root)33void addUtility(TestNode** root) 34 { 35 addCStringTest(root); 36 addTrieTest(root); 37 addLocaleTest(root); 38 addCLDRTest(root); 39 addUnicodeTest(root); 40 addUStringTest(root); 41 addCaseTest(root); 42 addResourceBundleTest(root); 43 addNEWResourceBundleTest(root); 44 addHashtableTest(root); 45 addEnumerationTest(root); 46 addPosixTest(root); 47 addSortTest(root); 48 } 49