mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-27 17:23:03 +01:00
40 lines
1.2 KiB
C
40 lines
1.2 KiB
C
|
/********************************************************************
|
||
|
* COPYRIGHT:
|
||
|
* Copyright (c) 1997-2001, International Business Machines Corporation and
|
||
|
* others. All Rights Reserved.
|
||
|
********************************************************************/
|
||
|
/********************************************************************************
|
||
|
*
|
||
|
* File CCONVTST.C
|
||
|
*
|
||
|
* Modification History:
|
||
|
* Name Description
|
||
|
* Madhu Katragadda Creation
|
||
|
*********************************************************************************
|
||
|
*/
|
||
|
#include "cintltst.h"
|
||
|
|
||
|
void addTestConvert(TestNode**);
|
||
|
void addTestNewConvert(TestNode**);
|
||
|
void addTestConvertErrorCallBack(TestNode** root);
|
||
|
void addTestEuroRegression(TestNode** root);
|
||
|
void addTestConverterFallBack(TestNode** root);
|
||
|
void addExtraTests(TestNode** root);
|
||
|
|
||
|
/* bocu1tst.c */
|
||
|
U_CFUNC void
|
||
|
addBOCU1Tests(TestNode** root);
|
||
|
|
||
|
void addConvert(TestNode** root);
|
||
|
|
||
|
void addConvert(TestNode** root)
|
||
|
{
|
||
|
addTestConvert(root);
|
||
|
addTestNewConvert(root);
|
||
|
addBOCU1Tests(root);
|
||
|
addTestConvertErrorCallBack(root);
|
||
|
addTestEuroRegression(root);
|
||
|
addTestConverterFallBack(root);
|
||
|
addExtraTests(root);
|
||
|
}
|