2000-01-15 02:00:06 +00:00
|
|
|
/********************************************************************
|
|
|
|
* COPYRIGHT:
|
2001-03-21 19:46:49 +00:00
|
|
|
* Copyright (c) 1997-2001, International Business Machines Corporation and
|
2000-01-15 02:00:06 +00:00
|
|
|
* others. All Rights Reserved.
|
|
|
|
********************************************************************/
|
|
|
|
/********************************************************************************
|
1999-08-16 21:50:52 +00:00
|
|
|
*
|
|
|
|
* File CALLCOLL.H
|
|
|
|
*
|
|
|
|
* Modification History:
|
|
|
|
* Name Description
|
|
|
|
* Madhu Katragadda Ported to C
|
|
|
|
*********************************************************************************
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* CollationDummyTest is a third level test class. This tests creation of
|
|
|
|
* a customized collator object. For example, number 1 to be sorted
|
|
|
|
* equlivalent to word 'one'.
|
|
|
|
*/
|
|
|
|
#ifndef _CALLCOLLTST
|
|
|
|
#define _CALLCOLLTST
|
|
|
|
|
2002-09-20 17:54:45 +00:00
|
|
|
#include "unicode/utypes.h"
|
|
|
|
|
|
|
|
#if !UCONFIG_NO_COLLATION
|
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
#include "cintltst.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* tests comparison of custom collation with different strengths */
|
2001-03-06 03:42:35 +00:00
|
|
|
void doTest(UCollator*, const UChar* source, const UChar* target, UCollationResult result);
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
|
2002-09-20 17:54:45 +00:00
|
|
|
#endif /* #if !UCONFIG_NO_COLLATION */
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
#endif
|