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-2012, International Business Machines Corporation and 6 * others. All Rights Reserved. 7 ********************************************************************/ 8 /******************************************************************************** 9 * 10 * File CCONVTST.C 11 * 12 * Modification History: 13 * Name Description 14 * Madhu Katragadda Creation 15 ********************************************************************************* 16 */ 17 #include "cintltst.h" 18 19 void addTestConvert(TestNode**); 20 #include "nucnvtst.h" 21 void addTestConvertErrorCallBack(TestNode** root); 22 void addTestEuroRegression(TestNode** root); 23 void addTestConverterFallBack(TestNode** root); 24 void addExtraTests(TestNode** root); 25 26 /* bocu1tst.c */ 27 U_CFUNC void 28 addBOCU1Tests(TestNode** root); 29 30 void addConvert(TestNode** root); 31 addConvert(TestNode ** root)32void addConvert(TestNode** root) 33 { 34 addTestConvert(root); 35 addTestNewConvert(root); 36 addBOCU1Tests(root); 37 addTestConvertErrorCallBack(root); 38 addTestEuroRegression(root); 39 #if !UCONFIG_NO_LEGACY_CONVERSION 40 addTestConverterFallBack(root); 41 #endif 42 addExtraTests(root); 43 } 44