2000-03-10 00:42:27 +00:00
|
|
|
/********************************************************************
|
|
|
|
* COPYRIGHT:
|
2005-03-08 22:49:59 +00:00
|
|
|
* Copyright (c) 2001-2005, International Business Machines Corporation and
|
2000-03-10 00:42:27 +00:00
|
|
|
* 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
|
|
|
|
|
2002-09-21 00:43:14 +00:00
|
|
|
#include "unicode/utypes.h"
|
|
|
|
|
|
|
|
#if !UCONFIG_NO_TRANSLITERATION
|
|
|
|
|
2000-01-19 19:02:10 +00:00
|
|
|
#include "unicode/translit.h"
|
2000-01-18 02:34:41 +00:00
|
|
|
#include "intltest.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
* @summary General test of Transliterator
|
|
|
|
*/
|
|
|
|
class TransliteratorAPITest : public IntlTest {
|
|
|
|
public:
|
2000-08-14 21:42:36 +00:00
|
|
|
void runIndexedTest(int32_t index, UBool exec, const char* &name, char* par=NULL);
|
2000-01-18 02:34:41 +00:00
|
|
|
|
|
|
|
/*Tests the function getDisplayName() */
|
2000-07-24 17:09:07 +00:00
|
|
|
void TestGetDisplayName(void);
|
2000-01-18 02:34:41 +00:00
|
|
|
|
2000-08-14 21:42:36 +00:00
|
|
|
void TestgetID(void);
|
2000-01-18 02:34:41 +00:00
|
|
|
|
2000-08-14 21:42:36 +00:00
|
|
|
void TestgetInverse(void);
|
2000-01-18 02:34:41 +00:00
|
|
|
|
2000-08-14 21:42:36 +00:00
|
|
|
void TestClone(void);
|
2000-01-18 02:34:41 +00:00
|
|
|
|
2000-08-14 21:42:36 +00:00
|
|
|
void TestTransliterate1(void);
|
2000-01-18 02:34:41 +00:00
|
|
|
|
2000-08-14 21:42:36 +00:00
|
|
|
void TestTransliterate2(void);
|
2000-01-18 02:34:41 +00:00
|
|
|
|
2000-08-14 21:42:36 +00:00
|
|
|
void TestTransliterate3(void);
|
2000-01-18 02:34:41 +00:00
|
|
|
|
2000-08-14 21:42:36 +00:00
|
|
|
void TestSimpleKeyboardTransliterator(void);
|
|
|
|
|
|
|
|
void TestKeyboardTransliterator1(void);
|
|
|
|
|
|
|
|
void TestKeyboardTransliterator2(void);
|
|
|
|
|
|
|
|
void TestKeyboardTransliterator3(void);
|
|
|
|
|
|
|
|
void TestGetAdoptFilter(void);
|
2000-01-18 02:34:41 +00:00
|
|
|
|
2000-07-24 17:09:07 +00:00
|
|
|
void TestNullTransliterator(void);
|
|
|
|
|
|
|
|
void TestRegisterUnregister(void);
|
2000-06-27 18:20:33 +00:00
|
|
|
|
2001-08-31 03:24:28 +00:00
|
|
|
void TestLatinDevanagari(void);
|
|
|
|
|
|
|
|
void TestDevanagariLatinRT(void);
|
|
|
|
|
2005-01-08 06:50:46 +00:00
|
|
|
void TestUnicodeFunctor(void);
|
|
|
|
|
2000-08-14 21:42:36 +00:00
|
|
|
/*Internal functions used*/
|
|
|
|
void doTest(const UnicodeString& , const UnicodeString& , const UnicodeString& );
|
|
|
|
|
|
|
|
void keyboardAux(Transliterator*, UnicodeString[] , UnicodeString&, int32_t, int32_t);
|
2000-01-18 02:34:41 +00:00
|
|
|
|
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
|
|
|
|
2003-12-09 01:41:43 +00:00
|
|
|
void callEverything(const Transliterator *t, int line);
|
|
|
|
|
2000-01-18 02:34:41 +00:00
|
|
|
};
|
|
|
|
|
2002-09-21 00:43:14 +00:00
|
|
|
#endif /* #if !UCONFIG_NO_TRANSLITERATION */
|
2000-01-18 02:34:41 +00:00
|
|
|
|
2002-09-21 00:43:14 +00:00
|
|
|
#endif
|