2000-01-15 02:00:06 +00:00
|
|
|
/********************************************************************
|
|
|
|
* COPYRIGHT:
|
|
|
|
* Copyright (c) 1997-1999, International Business Machines Corporation and
|
|
|
|
* others. All Rights Reserved.
|
|
|
|
********************************************************************/
|
|
|
|
/********************************************************************************
|
1999-08-16 21:50:52 +00:00
|
|
|
*
|
|
|
|
* File CUCDTST.H
|
|
|
|
*
|
|
|
|
* Modification History:
|
|
|
|
* Name Description
|
|
|
|
* Madhu Katragadda Converted to C, added tests for string functions
|
|
|
|
*********************************************************************************
|
|
|
|
*/
|
|
|
|
/* C API TEST For Unicode */
|
|
|
|
|
|
|
|
#ifndef _CUCDTST
|
|
|
|
#define _CUNDTST
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void addUnicodeTests(TestNode**);
|
|
|
|
|
|
|
|
|
|
|
|
static void TestUpperLower(void);
|
|
|
|
static void TestLetterNumber(void);
|
|
|
|
static void TestMisc(void);
|
|
|
|
static void TestControlPrint(void);
|
|
|
|
static void TestIdentifier(void);
|
|
|
|
static void TestUnicodeData(void);
|
|
|
|
static void TestStringFunctions(void);
|
|
|
|
|
|
|
|
/* internal methods used */
|
|
|
|
int32_t MakeProp(char* str);
|
|
|
|
int32_t MakeDir(char* str);
|
|
|
|
|
|
|
|
void setUpDataTable(void);
|
2000-07-06 23:01:50 +00:00
|
|
|
void cleanUpDataTable(void);
|
1999-08-16 21:50:52 +00:00
|
|
|
#endif
|