2000-03-10 00:42:27 +00:00
|
|
|
/********************************************************************
|
|
|
|
* COPYRIGHT:
|
|
|
|
* Copyright (c) 2000, International Business Machines Corporation and
|
|
|
|
* others. All Rights Reserved.
|
|
|
|
********************************************************************/
|
|
|
|
/************************************************************************
|
2000-01-18 02:34:41 +00:00
|
|
|
* Date Name Description
|
|
|
|
* 12/14/99 Madhu Creation.
|
|
|
|
************************************************************************/
|
|
|
|
/**
|
|
|
|
* IntlTestRBBI is the top level test class for the RuleBasedBreakIterator tests
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef INTLTRANSLIT_H
|
|
|
|
#define INTLTRANSLIT_H
|
|
|
|
|
|
|
|
|
|
|
|
#include "unicode/utypes.h"
|
|
|
|
#include "intltest.h"
|
|
|
|
|
|
|
|
|
|
|
|
class IntlTestTransliterator: public IntlTest {
|
|
|
|
public:
|
2000-05-18 22:08:39 +00:00
|
|
|
void runIndexedTest( int32_t index, UBool exec, char* &name, char* par = NULL );
|
2000-01-18 02:34:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|