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 addULocaleTest(TestNode**); 21 void addLocaleBuilderTest(TestNode**); 22 void addCLDRTest(TestNode**); 23 void addUnicodeTest(TestNode**); 24 void addUStringTest(TestNode**); 25 void addCaseTest(TestNode**); 26 void addResourceBundleTest(TestNode**); 27 void addNEWResourceBundleTest(TestNode**); 28 void addHashtableTest(TestNode** root); 29 void addCStringTest(TestNode** root); 30 void addTrieTest(TestNode** root); 31 void addTrie2Test(TestNode** root); 32 void addUCPTrieTest(TestNode** root); 33 void addEnumerationTest(TestNode** root); 34 void addPosixTest(TestNode** root); 35 void addSortTest(TestNode** root); 36 37 void addUtility(TestNode** root); 38 addUtility(TestNode ** root)39void addUtility(TestNode** root) 40 { 41 addCStringTest(root); 42 addTrieTest(root); 43 addTrie2Test(root); 44 addUCPTrieTest(root); 45 addLocaleTest(root); 46 addLocaleBuilderTest(root); 47 addULocaleTest(root); 48 addCLDRTest(root); 49 addUnicodeTest(root); 50 addUStringTest(root); 51 addCaseTest(root); 52 addResourceBundleTest(root); 53 addNEWResourceBundleTest(root); 54 addHashtableTest(root); 55 addEnumerationTest(root); 56 addPosixTest(root); 57 addSortTest(root); 58 } 59