1999-08-16 21:50:52 +00:00
|
|
|
/*
|
|
|
|
*****************************************************************************************
|
|
|
|
* *
|
|
|
|
* COPYRIGHT: *
|
|
|
|
* (C) Copyright Taligent, Inc., 1996 *
|
|
|
|
* (C) Copyright International Business Machines Corporation, 1999 *
|
|
|
|
* Licensed Material - Program-Property of IBM - All Rights Reserved. *
|
|
|
|
* US Government Users Restricted Rights - Use, duplication, or disclosure *
|
|
|
|
* restricted by GSA ADP Schedule Contract with IBM Corp. *
|
|
|
|
* *
|
|
|
|
*****************************************************************************************
|
|
|
|
********************************************************************************
|
|
|
|
*
|
|
|
|
* File CCONVTST.C
|
|
|
|
*
|
|
|
|
* Modification History:
|
|
|
|
* Name Description
|
|
|
|
* Madhu Katragadda Creation
|
|
|
|
*********************************************************************************
|
|
|
|
*/
|
|
|
|
#include "cintltst.h"
|
|
|
|
|
|
|
|
void addTestConvert(TestNode**);
|
|
|
|
void addTestNewConvert(TestNode**);
|
|
|
|
void addTestConvertErrorCallBack(TestNode** root);
|
1999-10-22 23:45:55 +00:00
|
|
|
void addTestEuroRegression(TestNode** root);
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
void addConvert(TestNode** root)
|
|
|
|
{
|
|
|
|
addTestConvert(root);
|
|
|
|
addTestNewConvert(root);
|
|
|
|
addTestConvertErrorCallBack(root);
|
1999-10-22 23:45:55 +00:00
|
|
|
addTestEuroRegression(root);
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|