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