home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 6 / AACD06.ISO / AACD / Programming / ICU / src / icu / source / test / intltest / citrtest.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-08-16  |  1.4 KB  |  38 lines

  1. /*
  2. *****************************************************************************************
  3. *                                                                                       *
  4. * COPYRIGHT:                                                                            *
  5. *   (C) Copyright Taligent, Inc.,  1997                                                 *
  6. *   (C) Copyright International Business Machines Corporation,  1997-1998               *
  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. #include "intltest.h"
  15.  
  16. /**
  17.  * Some tests for CharacterIterator and StringCharacterIterator
  18.  **/
  19. class CharIterTest: public IntlTest {
  20. public:
  21.     CharIterTest();
  22.     ~CharIterTest();
  23.     
  24.     void runIndexedTest( int32_t index, bool_t exec, char* &name, char* par = NULL );
  25.  
  26.     /**
  27.      * Test Constructors and operators ==, != and a few other methods
  28.      **/
  29.     void TestConstructionAndEquality(void);
  30.     /**
  31.      * test the iteration functionality in different ways
  32.      **/
  33.     void TestIteration(void);
  34. };
  35.  
  36.  
  37.  
  38.