home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 6 / AACD06.ISO / AACD / Programming / ICU / src / icu / source / test / intltest / pptest.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-10-07  |  990 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 _PARSEPOSITIONIONTEST_
  14. #define _PARSEPOSITIONIONTEST_
  15.  
  16. #include "utypes.h"
  17. #include "intltest.h"
  18.  
  19.  
  20. /** 
  21.  * Performs test for ParsePosition
  22.  **/
  23. class ParsePositionTest: public IntlTest {
  24.     // IntlTest override
  25.     void runIndexedTest( int32_t index, bool_t exec, char* &name, char* par );
  26. public:
  27.  
  28.     void TestParsePosition(void);
  29.     void TestFieldPosition(void);
  30.     void TestFieldPosition_example(void);
  31.     void Test4109023(void);
  32.  
  33. protected:
  34.     bool_t failure(UErrorCode status, const char* msg);
  35. };
  36.  
  37. #endif // _PARSEPOSITIONIONTEST_
  38. //eof
  39.