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 CUCDTST.H
|
|
|
|
*
|
|
|
|
* Modification History:
|
2000-08-16 00:27:51 +00:00
|
|
|
* Name Description
|
1999-08-16 21:50:52 +00:00
|
|
|
* Madhu Katragadda Converted to C, added tests for string functions
|
|
|
|
*********************************************************************************
|
|
|
|
*/
|
|
|
|
/* C API TEST For Unicode */
|
|
|
|
|
|
|
|
#ifndef _CUCDTST
|
2001-01-31 22:42:21 +00:00
|
|
|
#define _CUCDTST
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
|
2000-12-15 19:16:43 +00:00
|
|
|
static void setUpDataTable(void);
|
|
|
|
static void cleanUpDataTable(void);
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
static void TestUpperLower(void);
|
|
|
|
static void TestLetterNumber(void);
|
|
|
|
static void TestMisc(void);
|
|
|
|
static void TestControlPrint(void);
|
|
|
|
static void TestIdentifier(void);
|
|
|
|
static void TestUnicodeData(void);
|
2001-01-30 03:25:05 +00:00
|
|
|
static void TestStringCopy(void);
|
1999-08-16 21:50:52 +00:00
|
|
|
static void TestStringFunctions(void);
|
2001-01-30 03:25:05 +00:00
|
|
|
static void TestStringSearching(void);
|
2001-01-31 22:42:21 +00:00
|
|
|
static void TestCharNames(void);
|
|
|
|
static void TestMirroring(void);
|
|
|
|
static void TestUnescape(void);
|
|
|
|
static void TestCaseMapping(void);
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
/* internal methods used */
|
2000-11-21 04:05:39 +00:00
|
|
|
static int32_t MakeProp(char* str);
|
|
|
|
static int32_t MakeDir(char* str);
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
#endif
|