e29f4f62c4
X-SVN-Rev: 5659
68 lines
2.4 KiB
C++
68 lines
2.4 KiB
C++
/********************************************************************
|
|
* COPYRIGHT:
|
|
* Copyright (c) 1997-2001, International Business Machines Corporation and
|
|
* others. All Rights Reserved.
|
|
********************************************************************
|
|
************************************************************************
|
|
* Date Name Description
|
|
* 03/17/2000 Madhu Creation.
|
|
************************************************************************/
|
|
|
|
#ifndef HEXTOUNITRTST_H
|
|
#define HEXTOUNITRTST_H
|
|
|
|
#include "unicode/translit.h"
|
|
#include "unicode/hextouni.h"
|
|
#include "intltest.h"
|
|
|
|
class HexToUnicodeTransliterator;
|
|
|
|
/**
|
|
* @test
|
|
* @summary General test of HexadecimalToUnicodeTransliterator
|
|
*/
|
|
class HexToUniTransliteratorTest : public IntlTest {
|
|
public:
|
|
void runIndexedTest(int32_t index, UBool exec, const char* &name, char* par=NULL);
|
|
|
|
/*Tests the constructors */
|
|
void TestConstruction(void);
|
|
/*Tests the function clone, and operator==()*/
|
|
void TestCloneEqual(void);
|
|
/*Tests the function getTransliterator() and setTransliterators() and adoptTransliterators()*/
|
|
void TestPattern(void);
|
|
/*Tests the function handleTransliterate()*/
|
|
void TestSimpleTransliterate(void);
|
|
/*Tests the function handleTransliterate()*/
|
|
void TestTransliterate(void);
|
|
|
|
//======================================================================
|
|
// Support methods
|
|
//======================================================================
|
|
void expectTranslit(const HexToUnicodeTransliterator& t,
|
|
const UnicodeString& message,
|
|
const UnicodeString& source,
|
|
int32_t start, int32_t limit, int32_t cursor,
|
|
const UnicodeString& expectedResult);
|
|
|
|
void expectPattern(HexToUnicodeTransliterator& t,
|
|
const UnicodeString& pattern,
|
|
const UnicodeString& source,
|
|
const UnicodeString& expectedResult);
|
|
|
|
void expect(const HexToUnicodeTransliterator& t,
|
|
const UnicodeString& message,
|
|
const UnicodeString& source,
|
|
const UnicodeString& expectedResult);
|
|
|
|
void expectAux(const UnicodeString& tag,
|
|
const UnicodeString& summary, UBool pass,
|
|
const UnicodeString& expectedResult);
|
|
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|