2000-03-10 00:42:27 +00:00
|
|
|
/********************************************************************
|
|
|
|
* COPYRIGHT:
|
2001-03-21 19:46:49 +00:00
|
|
|
* Copyright (c) 1996-2001, International Business Machines Corporation and
|
2000-03-10 00:42:27 +00:00
|
|
|
* 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"
|
|
|
|
|
2002-04-25 21:49:16 +00:00
|
|
|
void addSetup(TestNode** root);
|
1999-08-16 21:50:52 +00:00
|
|
|
void addUtility(TestNode** root);
|
|
|
|
void addBreakIter(TestNode** root);
|
2000-08-10 01:33:28 +00:00
|
|
|
void addStandardNamesTest(TestNode **root);
|
1999-08-16 21:50:52 +00:00
|
|
|
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-07-26 02:05:15 +00:00
|
|
|
void addUTF8Test(TestNode** root);
|
2000-06-27 16:27:02 +00:00
|
|
|
void addUTransTest(TestNode** root);
|
2000-07-12 23:33:20 +00:00
|
|
|
void addPUtilTest(TestNode** root);
|
2000-08-02 00:03:10 +00:00
|
|
|
void addCompactArrayTest(TestNode** root);
|
2001-08-16 00:58:53 +00:00
|
|
|
void addTestDeprecatedAPI(TestNode** root);
|
2001-09-18 03:43:45 +00:00
|
|
|
void addUCharTransformTest(TestNode** root);
|
2002-06-04 23:31:13 +00:00
|
|
|
void addUSetTest(TestNode** root);
|
1999-09-30 23:47:52 +00:00
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
void addAllTests(TestNode** root)
|
|
|
|
{
|
2002-04-25 21:49:16 +00:00
|
|
|
addSetup(root); /* Leave this test first! */
|
|
|
|
addUDataTest(root);
|
|
|
|
addPUtilTest(root);
|
2000-05-03 20:54:37 +00:00
|
|
|
addUTF16Test(root);
|
2000-07-26 02:05:15 +00:00
|
|
|
addUTF8Test(root);
|
2000-08-10 01:33:28 +00:00
|
|
|
addUtility(root);
|
1999-08-16 21:50:52 +00:00
|
|
|
addConvert(root);
|
2002-04-25 21:49:16 +00:00
|
|
|
addUCharTransformTest(root);
|
2002-04-25 21:52:13 +00:00
|
|
|
addStandardNamesTest(root);
|
2002-04-25 21:49:16 +00:00
|
|
|
addCompactArrayTest(root);
|
|
|
|
addFormatTest(root);
|
|
|
|
addBreakIter(root);
|
2001-01-26 00:12:23 +00:00
|
|
|
addCollTest(root);
|
1999-09-30 23:47:52 +00:00
|
|
|
addComplexTest(root);
|
2000-06-27 16:27:02 +00:00
|
|
|
addUTransTest(root);
|
2002-06-04 23:31:13 +00:00
|
|
|
addUSetTest(root);
|
2001-08-16 00:58:53 +00:00
|
|
|
addTestDeprecatedAPI(root);
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
2000-08-10 01:33:28 +00:00
|
|
|
|