blob: 38b4a2a9d7b6e26f006e004c5b5f4dc41e80c36b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
/********************************************************************
* COPYRIGHT:
* Copyright (c) 1997-2003, 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 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 TestCurrencyKeywords(void);
#endif /* #if !UCONFIG_NO_FORMATTING */
#endif
|