mirror of
https://github.com/reactos/reactos.git
synced 2024-11-11 01:04:11 +00:00
c424146e2c
svn path=/branches/cmake-bringup/; revision=48236
60 lines
1.7 KiB
C
60 lines
1.7 KiB
C
/********************************************************************
|
|
* COPYRIGHT:
|
|
* Copyright (c) 1997-2003, 2007 International Business Machines Corporation and
|
|
* others. All Rights Reserved.
|
|
********************************************************************/
|
|
/********************************************************************************
|
|
*
|
|
* File CNMDPTST.H
|
|
*
|
|
* Modification History:
|
|
* Name Description
|
|
* Madhu Katragadda Creation
|
|
*********************************************************************************
|
|
*/
|
|
/* C DEPTH TEST FOR NUMBER FORMAT */
|
|
|
|
#ifndef _CNUMDEPTST
|
|
#define _CNUMDEPTST
|
|
|
|
#include "unicode/utypes.h"
|
|
|
|
#if !UCONFIG_NO_FORMATTING
|
|
|
|
#include "cintltst.h"
|
|
|
|
/* The function used to test differnet format patterns*/
|
|
static void TestPatterns(void);
|
|
|
|
/* Test the handling of quotes*/
|
|
static void TestQuotes(void);
|
|
|
|
/* Test patterns with exponential representation*/
|
|
static void TestExponential(void);
|
|
|
|
/* Test the handling of the currency symbol in patterns. */
|
|
static void TestCurrencySign(void);
|
|
|
|
/* Test proper rounding by the format method.*/
|
|
static void TestRounding487(void);
|
|
|
|
/* Test proper handling of rounding modes. */
|
|
static void TestRounding5350(void);
|
|
|
|
/* Test localized currency patterns. */
|
|
static void TestCurrency(void);
|
|
|
|
/* Test getDoubleAttribute and getDoubleAttribute */
|
|
static void TestDoubleAttribute(void);
|
|
|
|
static void TestSecondaryGrouping(void);
|
|
|
|
/*Internal functions used*/
|
|
static void roundingTest(UNumberFormat*, double, int32_t, const char*);
|
|
static void roundingTest2(UNumberFormat*, double, int32_t, const char*);
|
|
|
|
static void TestCurrencyKeywords(void);
|
|
|
|
#endif /* #if !UCONFIG_NO_FORMATTING */
|
|
|
|
#endif
|