icu/icu4c/source/test/cintltst/cnmdptst.h
luz paz 73eca0a9c9 ICU-21580 Fix typos in icu4c/
Found via `codespell -q 3 -L ans,anumber,atleast,ba,bre,hace,nd,nin,ois,rsource,som,sur,tht -S icu4c/source/data/zone,icu4c/source/data/lang`
ICU-21580 Fix source (related) typos
ICU-21580 Revert extraneous auto-encoding
ICU-21580 Re-add previous reverted fix without auto-encoding
2021-07-19 13:22:38 -05:00

65 lines
1.9 KiB
C

// © 2016 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
/********************************************************************
* COPYRIGHT:
* Copyright (c) 1997-2003, 2007-2009 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"
#include "unicode/unum.h"
#if !UCONFIG_NO_FORMATTING
#include "cintltst.h"
/* The function used to test different 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);
static void TestGetKeywordValuesForLocale(void);
#endif /* #if !UCONFIG_NO_FORMATTING */
#endif