scuffed-code/icu4c/source/test/cintltst/calltest.c

41 lines
1.1 KiB
C
Raw Normal View History

/********************************************************************
* 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);
void addComplexTest(TestNode** root);
void addUDataTest(TestNode** root);
void addUTF16Test(TestNode** root);
void addUTransTest(TestNode** root);
1999-08-16 21:50:52 +00:00
void addAllTests(TestNode** root)
{
addUTF16Test(root);
addUtility(root);
1999-08-16 21:50:52 +00:00
addBreakIter(root);
addFormatTest(root);
addConvert(root);
addCollTest(root);
addComplexTest(root);
addUDataTest(root);
addUTransTest(root);
1999-08-16 21:50:52 +00:00
}