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 CFRTST.H
|
|
|
|
*
|
|
|
|
* Modification History:
|
|
|
|
* Name Description
|
|
|
|
* Madhu Katragadda Converted to C
|
2000-08-14 23:35:57 +00:00
|
|
|
*********************************************************************************/
|
1999-08-16 21:50:52 +00:00
|
|
|
/**
|
|
|
|
* CollationFrenchTest is a third level test class. This tests the locale
|
|
|
|
* specific primary, secondary and tertiary rules. For example, the ignorable
|
|
|
|
* character '-' in string "black-bird". The en_US locale uses the default
|
|
|
|
* collation rules as its sorting sequence.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _CFRCOLLTST
|
|
|
|
#define _CFRCOLLTST
|
|
|
|
|
|
|
|
|
|
|
|
#include "cintltst.h"
|
|
|
|
|
2001-03-30 03:49:29 +00:00
|
|
|
#define MAX_TOKEN_LEN 16
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
/* performs Extra tests*/
|
|
|
|
static void TestExtra(void);
|
|
|
|
|
|
|
|
/* perform test with strength SECONDARY*/
|
|
|
|
static void TestSecondary(void);
|
|
|
|
|
|
|
|
/*perform test with strength TERTIARY*/
|
|
|
|
static void TestTertiary(void);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|