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
19void addTestConvert(TestNode**);
20#include "nucnvtst.h"
21void addTestConvertErrorCallBack(TestNode** root);
22void addTestEuroRegression(TestNode** root);
23void addTestConverterFallBack(TestNode** root);
24void addExtraTests(TestNode** root);
25
26/* bocu1tst.c */
27U_CFUNC void
28addBOCU1Tests(TestNode** root);
29
30void addConvert(TestNode** root);
31
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