scuffed-code/icu4c/source/test/cintltst/citertst.h
Syn Wee Quek 37b1e8a4d3 ICU-861
Added TestUnicodeChar.
Forms strings from the set of BMP characters, comparing results from
ucol_previous and ucol_next.

X-SVN-Rev: 3761
2001-02-23 23:41:16 +00:00

85 lines
2.1 KiB
C

/********************************************************************
* COPYRIGHT:
* Copyright (c) 1997-1999, International Business Machines Corporation and
* others. All Rights Reserved.
********************************************************************/
/********************************************************************************
*
* File CITERTST.H
*
* Modification History:
* Name Description
* Madhu Katragadda Converted to C
*********************************************************************************/
/**
* Collation Iterator tests.
* (Let me reiterate my position...)
*/
#ifndef _CITERCOLLTST
#define _CITERCOLLTST
#include "cintltst.h"
#include "unicode/utypes.h"
#include "unicode/ucol.h"
#define MAX_TOKEN_LEN 128
/**
* Test for CollationElementIterator previous and next for the whole set of
* unicode characters.
*/
static void TestUnicodeChar(void);
/**
* Test for CollationElementIterator.previous()
*
* @bug 4108758 - Make sure it works with contracting characters
*
*/
static void TestPrevious(void);
/**
* Test for getOffset() and setOffset()
*/
static void TestOffset(void);
/**
* Test for setText()
*/
static void TestSetText(void);
/** @bug 4108762
* Test for getMaxExpansion()
*/
static void TestMaxExpansion(void);
/*------------------------------------------------------------------------
Internal utilities
*/
static void backAndForth(UCollationElements* iter);
/**
* Verify that getMaxExpansion works on a given set of collation rules
*/
static void verifyExpansion(UChar* rules, const UChar tests[], int32_t testCount);
/**
* Return an integer array containing all of the collation orders
* returned by calls to next on the specified iterator
*/
static int32_t* getOrders(UCollationElements* iter, int32_t *orderLength);
static void assertEqual(UCollationElements *i1, UCollationElements *i2);
static UChar *test1;
static UChar *test2;
#endif