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