home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 6 / AACD06.ISO / AACD / Programming / ICU / src / icu / source / test / intltest / miscdtfm.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-10-07  |  991 b   |  39 lines

  1.  
  2. /*
  3. ********************************************************************
  4. * COPYRIGHT: 
  5. * (C) Copyright International Business Machines Corporation, 1998
  6. * Licensed Material - Program-Property of IBM - All Rights Reserved. 
  7. * US Government Users Restricted Rights - Use, duplication, or disclosure 
  8. * restricted by GSA ADP Schedule Contract with IBM Corp. 
  9. *
  10. ********************************************************************
  11. */
  12.  
  13. #ifndef _DATEFORMATMISCTEST_
  14. #define _DATEFORMATMISCTEST_
  15.  
  16. #include "utypes.h"
  17. #include "intltest.h"
  18.  
  19. /** 
  20.  * Performs miscellaneous tests for DateFormat, SimpleDateFormat, DateFormatSymbols
  21.  **/
  22. class DateFormatMiscTests : public IntlTest {    
  23.     
  24.     // IntlTest override
  25.     void runIndexedTest( int32_t index, bool_t exec, char* &name, char* par );
  26. public:
  27.  
  28.     void test4097450(void);
  29.     void test4099975(void);
  30.     void test4117335(void);
  31.  
  32. protected:
  33.     bool_t failure(UErrorCode status, const char* msg);
  34.  
  35. };
  36.  
  37. #endif // _DATEFORMATMISCTEST_
  38. //eof
  39.