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
|
|
|
|
* 1/03/2000 Madhu Creation.
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#ifndef TRANSAPI_H
|
|
|
|
#define TRANSAPI_H
|
|
|
|
|
|
|
|
#include "unicode/utypes.h"
|
2000-01-19 19:02:10 +00:00
|
|
|
#include "unicode/translit.h"
|
2000-01-18 02:34:41 +00:00
|
|
|
#include "intltest.h"
|
|
|
|
|
|
|
|
class Transliterator;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
* @summary General test of Transliterator
|
|
|
|
*/
|
|
|
|
class TransliteratorAPITest : 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
|
|
|
|
|
|
|
/*Tests the function getDisplayName() */
|
|
|
|
void TestGetDisplayName();
|
|
|
|
|
|
|
|
void TestgetID();
|
|
|
|
|
|
|
|
void TestgetInverse();
|
|
|
|
|
|
|
|
void TestClone();
|
|
|
|
|
|
|
|
void TestTransliterate1();
|
|
|
|
|
|
|
|
void TestTransliterate2();
|
|
|
|
|
|
|
|
void TestTransliterate3();
|
|
|
|
|
|
|
|
void TestSimpleKeyboardTransliterator();
|
|
|
|
|
|
|
|
void TestKeyboardTransliterator1();
|
|
|
|
|
|
|
|
void TestKeyboardTransliterator2();
|
|
|
|
|
|
|
|
void TestKeyboardTransliterator3();
|
|
|
|
|
|
|
|
void TestGetAdoptFilter();
|
|
|
|
|
2000-06-27 18:20:33 +00:00
|
|
|
void TestNullTransliterator();
|
|
|
|
|
2000-01-18 02:34:41 +00:00
|
|
|
/*Internal functions used*/
|
|
|
|
void doTest(const UnicodeString& , const UnicodeString& , const UnicodeString& );
|
|
|
|
|
|
|
|
void keyboardAux(Transliterator*, UnicodeString[] , UnicodeString&, int32_t, int32_t);
|
|
|
|
|
2000-01-19 19:02:10 +00:00
|
|
|
void displayOutput(const UnicodeString&, const UnicodeString&, UnicodeString&,
|
2000-06-27 19:06:15 +00:00
|
|
|
UTransPosition&);
|
2000-01-18 02:34:41 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|