home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 6 / AACD06.ISO / AACD / Programming / ICU / src / icu / source / test / cintltst / calltest.c < prev    next >
Encoding:
C/C++ Source or Header  |  1999-10-01  |  1.6 KB  |  43 lines

  1. /*
  2. *****************************************************************************************
  3. *                                                                                       *
  4. * COPYRIGHT:                                                                            *
  5. *   (C) Copyright Taligent, Inc.,  1996                                                 *
  6. *   (C) Copyright International Business Machines Corporation,  1999                    *
  7. *   Licensed Material - Program-Property of IBM - All Rights Reserved.                  *
  8. *   US Government Users Restricted Rights - Use, duplication, or disclosure             *
  9. *   restricted by GSA ADP Schedule Contract with IBM Corp.                              *
  10. *                                                                                       *
  11. *****************************************************************************************
  12. ********************************************************************************
  13. *
  14. * File CALLTEST.C
  15. *
  16. * Modification History:
  17. *   Creation:   Madhu Katragadda 
  18. *********************************************************************************
  19. */
  20. /* THE FILE WHERE ALL C API TESTS ARE ADDED TO THE ROOT */
  21.  
  22.  
  23. #include "cintltst.h"
  24.  
  25. void addUtility(TestNode** root);
  26. void addBreakIter(TestNode** root);
  27. void addFormatTest(TestNode** root);
  28. void addConvert(TestNode** root);
  29. void addCollTest(TestNode** root);
  30. void addSUSCTest(TestNode** root);
  31. void addComplexTest(TestNode** root);
  32.  
  33. void addAllTests(TestNode** root)
  34. {
  35.     addUtility(root);
  36.     addBreakIter(root);
  37.     addFormatTest(root);
  38.     addConvert(root);
  39.     addCollTest(root);
  40.     addSUSCTest(root);
  41.     addComplexTest(root);
  42. }
  43.