| OLD | NEW |
| (Empty) |
| 1 /******************************************************************** | |
| 2 * COPYRIGHT: | |
| 3 * Copyright (c) 1997-2001, International Business Machines Corporation and | |
| 4 * others. All Rights Reserved. | |
| 5 ********************************************************************/ | |
| 6 /*******************************************************************************
* | |
| 7 * | |
| 8 * File CNORMTST.H | |
| 9 * | |
| 10 * Modification History: | |
| 11 * Name Description | |
| 12 * Madhu Katragadda Converted to C | |
| 13 * synwee added test for quick check | |
| 14 * synwee added test for checkFCD | |
| 15 ********************************************************************************
* | |
| 16 */ | |
| 17 #ifndef _NORMTST | |
| 18 #define _NORMTST | |
| 19 /** | |
| 20 * tests for u_normalization | |
| 21 */ | |
| 22 | |
| 23 #include "cintltst.h" | |
| 24 | |
| 25 void TestDecomp(void); | |
| 26 void TestCompatDecomp(void); | |
| 27 void TestCanonDecompCompose(void); | |
| 28 void TestCompatDecompCompose(void); | |
| 29 void TestNull(void); | |
| 30 void TestQuickCheck(void); | |
| 31 void TestCheckFCD(void); | |
| 32 | |
| 33 /*internal functions*/ | |
| 34 | |
| 35 /* static void assertEqual(const UChar* result, const UChar* expected, int32
_t index); | |
| 36 */ | |
| 37 static void assertEqual(const UChar* result, const char* expected, int32_t
index); | |
| 38 | |
| 39 | |
| 40 | |
| 41 | |
| 42 | |
| 43 #endif | |
| OLD | NEW |