mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-24 22:03:04 +01:00
58 lines
1.3 KiB
C
58 lines
1.3 KiB
C
|
/********************************************************************
|
||
|
* COPYRIGHT:
|
||
|
* Copyright (c) 2002-2003, International Business Machines Corporation and
|
||
|
* others. All Rights Reserved.
|
||
|
********************************************************************
|
||
|
*
|
||
|
* @author Mark E. Davis
|
||
|
* @author Vladimir Weinstein
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Test Canonical Iterator
|
||
|
*/
|
||
|
|
||
|
#ifndef _CANITTST
|
||
|
#define _CANITTST
|
||
|
|
||
|
#include "unicode/utypes.h"
|
||
|
|
||
|
#if !UCONFIG_NO_NORMALIZATION
|
||
|
|
||
|
|
||
|
U_NAMESPACE_BEGIN
|
||
|
|
||
|
class Transliterator;
|
||
|
|
||
|
U_NAMESPACE_END
|
||
|
|
||
|
#include "unicode/translit.h"
|
||
|
#include "intltest.h"
|
||
|
#include "hash.h"
|
||
|
|
||
|
class CanonicalIteratorTest : public IntlTest {
|
||
|
public:
|
||
|
CanonicalIteratorTest();
|
||
|
virtual ~CanonicalIteratorTest();
|
||
|
|
||
|
void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
|
||
|
|
||
|
void TestCanonicalIterator(void);
|
||
|
void TestExhaustive(void);
|
||
|
void TestBasic();
|
||
|
void TestAPI();
|
||
|
UnicodeString collectionToString(Hashtable *col);
|
||
|
//static UnicodeString collectionToString(Collection col);
|
||
|
private:
|
||
|
void expectEqual(const UnicodeString &message, const UnicodeString &item, const UnicodeString &a, const UnicodeString &b);
|
||
|
|
||
|
Transliterator *nameTrans;
|
||
|
Transliterator *hexTrans;
|
||
|
|
||
|
UnicodeString getReadable(const UnicodeString &obj);
|
||
|
};
|
||
|
|
||
|
#endif /* #if !UCONFIG_NO_NORMALIZATION */
|
||
|
|
||
|
#endif // _CANITTST
|