2000-01-15 02:00:06 +00:00
|
|
|
/********************************************************************
|
|
|
|
* COPYRIGHT:
|
2003-12-19 22:33:33 +00:00
|
|
|
* Copyright (c) 1997-2003, 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 CNUMTST.H
|
|
|
|
*
|
|
|
|
* Modification History:
|
|
|
|
* Name Description
|
|
|
|
* Madhu Katragadda Creation
|
|
|
|
*********************************************************************************
|
|
|
|
*/
|
|
|
|
/* C API TEST FOR NUMBER FORMAT */
|
|
|
|
#ifndef _CNUMFRMTST
|
|
|
|
#define _CNUMFRMTST
|
|
|
|
|
2002-09-20 17:54:45 +00:00
|
|
|
#include "unicode/utypes.h"
|
|
|
|
|
|
|
|
#if !UCONFIG_NO_FORMATTING
|
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
#include "cintltst.h"
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The function used to test the Number format API
|
|
|
|
**/
|
|
|
|
static void TestNumberFormat(void);
|
|
|
|
|
2000-11-07 18:56:35 +00:00
|
|
|
/**
|
|
|
|
* The function used to test the Number format API with padding
|
|
|
|
**/
|
|
|
|
static void TestNumberFormatPadding(void);
|
|
|
|
|
2003-11-04 23:10:46 +00:00
|
|
|
/**
|
|
|
|
* The function used to test the Number format API with padding
|
|
|
|
**/
|
|
|
|
static void TestInt64Format(void);
|
|
|
|
|
2004-03-12 20:15:13 +00:00
|
|
|
/**
|
|
|
|
* Test RBNF access through unumfmt APIs.
|
|
|
|
**/
|
|
|
|
static void TestRBNFFormat(void);
|
|
|
|
|
2002-09-20 17:54:45 +00:00
|
|
|
#endif /* #if !UCONFIG_NO_FORMATTING */
|
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
#endif
|