home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 6 / AACD06.ISO / AACD / Programming / ICU / src / icu / source / test / cintltst / crestst.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-08-16  |  1.9 KB  |  56 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 CRESTST.H
  15. *
  16. * Modification History:
  17. *        Name                     Description            
  18. *     Madhu Katragadda            Converted to C
  19. *********************************************************************************
  20. */
  21. #ifndef _CRESTST
  22. #define _CRESTST
  23. /* C API TEST FOR RESOURCEBUNDLE */
  24. #include "cintltst.h"
  25.  
  26.  
  27.  
  28.  
  29.     void addTestResourceBundleTest(TestNode**);
  30.  
  31.  /**
  32.  *Perform several extensive tests using the subtest routine testTag
  33.  */
  34.     void TestResourceBundles(void);
  35.     /** 
  36.      * Test construction of ResourceBundle accessing a custom test resource-file
  37.      **/
  38.     void TestConstruction1(void);
  39.  
  40.     void TestConstruction2(void);
  41.     /**
  42.      * extensive subtests called by TestResourceBundles
  43.      **/
  44.      
  45.     void setUpDataTable(void);
  46.     bool_t testTag(const char* frag, bool_t in_Default, bool_t in_te, bool_t in_te_IN);
  47.  
  48.     void record_pass(void);
  49.     void record_fail(void);
  50.  
  51.     
  52.     int32_t pass;
  53.     int32_t fail;
  54.  
  55. #endif
  56.