Home | History | Annotate | Download | only in cintltst
      1 //  2016 and later: Unicode, Inc. and others.
      2 // License & terms of use: http://www.unicode.org/copyright.html
      3 /********************************************************************
      4  * COPYRIGHT:
      5  * Copyright (c) 1997-2001, International Business Machines Corporation and
      6  * others. All Rights Reserved.
      7  ********************************************************************/
      8 /********************************************************************************
      9 *
     10 * File CDETST.H
     11 *
     12 * Modification History:
     13 *        Name                     Description
     14 *     Madhu Katragadda            Converted to C
     15 *********************************************************************************/
     16 /**
     17  * CollationGERMANTest is a third level test class.  This tests the locale
     18  * specific primary, secondary and tertiary rules.  For example, the ignorable
     19  * character '-' in string "black-bird".  The en_US locale uses the default
     20  * collation rules as its sorting sequence.
     21  */
     22 
     23 #ifndef _CGERCOLLTST
     24 #define _CGERCOLLTST
     25 
     26 #include "unicode/utypes.h"
     27 
     28 #if !UCONFIG_NO_COLLATION
     29 
     30 #include "cintltst.h"
     31 
     32 
     33 #define MAX_TOKEN_LEN 16
     34 
     35     /* performs test with strength PRIMARY */
     36 static    void TestPrimary(void);
     37 
     38     /* perform test with strength TERTIARY */
     39 static     void TestTertiary(void);
     40 
     41 
     42 #endif /* #if !UCONFIG_NO_COLLATION */
     43 
     44 #endif
     45