2000-03-10 00:42:27 +00:00
|
|
|
/********************************************************************
|
|
|
|
* COPYRIGHT:
|
|
|
|
* Copyright (c) 1996-1999, International Business Machines Corporation and
|
|
|
|
* others. All Rights Reserved.
|
|
|
|
********************************************************************/
|
|
|
|
/********************************************************************************
|
1999-08-16 21:50:52 +00:00
|
|
|
*
|
|
|
|
* File CALLTEST.C
|
|
|
|
*
|
|
|
|
* Modification History:
|
|
|
|
* Creation: Madhu Katragadda
|
|
|
|
*********************************************************************************
|
|
|
|
*/
|
|
|
|
/* THE FILE WHERE ALL C API TESTS ARE ADDED TO THE ROOT */
|
|
|
|
|
|
|
|
|
|
|
|
#include "cintltst.h"
|
|
|
|
|
|
|
|
void addUtility(TestNode** root);
|
|
|
|
void addBreakIter(TestNode** root);
|
|
|
|
void addFormatTest(TestNode** root);
|
|
|
|
void addConvert(TestNode** root);
|
|
|
|
void addCollTest(TestNode** root);
|
1999-09-30 23:47:52 +00:00
|
|
|
void addComplexTest(TestNode** root);
|
2000-03-03 01:09:33 +00:00
|
|
|
void addUDataTest(TestNode** root);
|
2000-05-03 20:54:37 +00:00
|
|
|
void addUTF16Test(TestNode** root);
|
2000-06-27 16:27:02 +00:00
|
|
|
void addUTransTest(TestNode** root);
|
1999-09-30 23:47:52 +00:00
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
void addAllTests(TestNode** root)
|
|
|
|
{
|
2000-05-03 20:54:37 +00:00
|
|
|
addUTF16Test(root);
|
|
|
|
addUtility(root);
|
1999-08-16 21:50:52 +00:00
|
|
|
addBreakIter(root);
|
|
|
|
addFormatTest(root);
|
|
|
|
addConvert(root);
|
|
|
|
addCollTest(root);
|
1999-09-30 23:47:52 +00:00
|
|
|
addComplexTest(root);
|
2000-03-03 01:09:33 +00:00
|
|
|
addUDataTest(root);
|
2000-06-27 16:27:02 +00:00
|
|
|
addUTransTest(root);
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|