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 CNORMTST.H
|
|
|
|
*
|
|
|
|
* Modification History:
|
|
|
|
* Name Description
|
|
|
|
* Madhu Katragadda Converted to C
|
2001-02-03 01:29:27 +00:00
|
|
|
* synwee added test for quick check
|
2001-02-24 02:50:01 +00:00
|
|
|
* synwee added test for checkFCD
|
1999-08-16 21:50:52 +00:00
|
|
|
*********************************************************************************
|
|
|
|
*/
|
|
|
|
#ifndef _NORMTST
|
|
|
|
#define _NORMTST
|
|
|
|
/**
|
|
|
|
* tests for u_normalization
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "cintltst.h"
|
|
|
|
|
|
|
|
void TestDecomp(void);
|
|
|
|
void TestCompatDecomp(void);
|
|
|
|
void TestCanonDecompCompose(void);
|
|
|
|
void TestCompatDecompCompose(void);
|
2000-07-28 17:24:48 +00:00
|
|
|
void TestNull(void);
|
2001-02-03 01:29:27 +00:00
|
|
|
void TestQuickCheck(void);
|
2001-02-24 02:50:01 +00:00
|
|
|
void TestCheckFCD(void);
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
/*internal functions*/
|
|
|
|
|
2000-12-13 18:16:56 +00:00
|
|
|
/* static void assertEqual(const UChar* result, const UChar* expected, int32_t index);
|
|
|
|
*/
|
|
|
|
static void assertEqual(const UChar* result, const char* expected, int32_t index);
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|