blob: 93ba3b792a351a62c1e10f6b98244ec00d63b34a [file] [log] [blame]
/*
*****************************************************************************************
* *
* COPYRIGHT: *
* (C) Copyright Taligent, Inc., 1996 *
* (C) Copyright International Business Machines Corporation, 1999 *
* Licensed Material - Program-Property of IBM - All Rights Reserved. *
* US Government Users Restricted Rights - Use, duplication, or disclosure *
* restricted by GSA ADP Schedule Contract with IBM Corp. *
* *
*****************************************************************************************
********************************************************************************
*
* File CNMDPTST.H
*
* Modification History:
* Name Description
* Madhu Katragadda Creation
*********************************************************************************
*/
/* C DEPTH TEST FOR NUMBER FORMAT */
#ifndef _CNUMDEPTST
#define _CNUMDEPTST
#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 localized currency patterns. */
static void TestCurrency(void);
/*Internal functions used*/
static void roundingTest(UNumberFormat*, double, int32_t, const char*);
#endif