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 CNORMTST.H
11 *
12 * Modification History:
13 *        Name                     Description
14 *     Madhu Katragadda            Converted to C
15 *     synwee                      added test for quick check
16 *     synwee                      added test for checkFCD
17 *********************************************************************************
18 */
19 #ifndef _NORMTST
20 #define _NORMTST
21 /**
22  *  tests for u_normalization
23  */
24 
25 #include "cintltst.h"
26 
27     void TestDecomp(void);
28     void TestCompatDecomp(void);
29     void TestCanonDecompCompose(void);
30     void TestCompatDecompCompose(void);
31     void TestNull(void);
32     void TestQuickCheck(void);
33     void TestCheckFCD(void);
34 
35     /*internal functions*/
36 
37 /*    static void assertEqual(const UChar* result,  const UChar* expected, int32_t index);
38 */
39     static void assertEqual(const UChar* result,  const char* expected, int32_t index);
40 
41 
42 
43 
44 
45 #endif
46