2000-03-10 00:42:27 +00:00
|
|
|
/********************************************************************
|
|
|
|
* COPYRIGHT:
|
2004-05-19 21:19:13 +00:00
|
|
|
* Copyright (c) 1996-2004, 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"
|
|
|
|
|
|
|
|
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);
|
2003-07-24 23:23:19 +00:00
|
|
|
void addUStringPrepTest(TestNode** root);
|
|
|
|
void addIDNATest(TestNode** root);
|
2003-08-05 01:25:54 +00:00
|
|
|
void addHeapMutexTest(TestNode **root);
|
2003-11-12 07:00:38 +00:00
|
|
|
void addUTraceTest(TestNode** root);
|
2004-03-22 22:35:35 +00:00
|
|
|
void addURegexTest(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
|
|
|
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);
|
2002-09-20 17:54:45 +00:00
|
|
|
#if !UCONFIG_NO_FORMATTING
|
2002-04-25 21:49:16 +00:00
|
|
|
addFormatTest(root);
|
2002-09-20 17:54:45 +00:00
|
|
|
#endif
|
|
|
|
#if !UCONFIG_NO_BREAK_ITERATION
|
2002-04-25 21:49:16 +00:00
|
|
|
addBreakIter(root);
|
2002-09-20 17:54:45 +00:00
|
|
|
#endif
|
|
|
|
#if !UCONFIG_NO_COLLATION
|
2001-01-26 00:12:23 +00:00
|
|
|
addCollTest(root);
|
2002-09-20 17:54:45 +00:00
|
|
|
#endif
|
1999-09-30 23:47:52 +00:00
|
|
|
addComplexTest(root);
|
2002-09-20 17:54:45 +00:00
|
|
|
#if !UCONFIG_NO_TRANSLITERATION
|
2000-06-27 16:27:02 +00:00
|
|
|
addUTransTest(root);
|
2002-09-20 17:54:45 +00:00
|
|
|
#endif
|
2002-06-04 23:31:13 +00:00
|
|
|
addUSetTest(root);
|
2001-08-16 00:58:53 +00:00
|
|
|
addTestDeprecatedAPI(root);
|
2003-07-24 23:23:19 +00:00
|
|
|
#if !UCONFIG_NO_IDNA
|
|
|
|
addUStringPrepTest(root);
|
|
|
|
addIDNATest(root);
|
|
|
|
#endif
|
2003-08-05 01:25:54 +00:00
|
|
|
addHeapMutexTest(root);
|
2003-11-12 07:00:38 +00:00
|
|
|
addUTraceTest(root);
|
2004-03-22 22:35:35 +00:00
|
|
|
#if !UCONFIG_NO_REGULAR_EXPRESSIONS
|
|
|
|
addURegexTest(root);
|
|
|
|
#endif
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
2000-08-10 01:33:28 +00:00
|
|
|
|