]> git.saurik.com Git - apple/icu.git/blame - icuSources/test/cintltst/encoll.h
ICU-491.11.3.tar.gz
[apple/icu.git] / icuSources / test / cintltst / encoll.h
CommitLineData
b75a7d8f
A
1/********************************************************************
2 * COPYRIGHT:
3 * Copyright (c) 1997-2001, International Business Machines Corporation and
4 * others. All Rights Reserved.
5 ********************************************************************/
6/********************************************************************************
7*
8* File encoll.H
9*
10* Modification History:
11* Name Description
12* Madhu Katragadda Converted to C
13*********************************************************************************/
14/**
15 * CollationEnglishTest is a third level test class. This tests the locale
16 * specific primary, secondary and tertiary rules. For example, the ignorable
17 * character '-' in string "black-bird". The en_US locale uses the default
18 * collation rules as its sorting sequence.
19 */
20
21#ifndef _CENCOLLTST
22#define _CENCOLLTST
23
24#include "unicode/utypes.h"
25
26#if !UCONFIG_NO_COLLATION
27
28#include "cintltst.h"
29
30#define MAX_TOKEN_LEN 16
31
32 /* performs test with strength PRIMARY */
33static void TestPrimary(void);
34
35 /* perform test with strength SECONDARY */
36static void TestSecondary(void);
37
38 /* perform test with strength TERTIARY */
39static void TestTertiary(void);
40
41
42#endif /* #if !UCONFIG_NO_COLLATION */
43
44#endif