scuffed-code/icu4c/source/test/intltest/numfmtst.h
Helena Chapman 3aaa52af8d ICU-161 updated the copyright notices.
X-SVN-Rev: 596
2000-01-15 02:00:06 +00:00

80 lines
2.4 KiB
C++

/********************************************************************
* COPYRIGHT:
* Copyright (c) 1997-1999, International Business Machines Corporation and
* others. All Rights Reserved.
********************************************************************/
#ifndef _NUMBERFORMATTEST_
#define _NUMBERFORMATTEST_
#include "unicode/utypes.h"
#include "caltztst.h"
class NumberFormat;
class DecimalFormat;
/**
* Performs various in-depth test on NumberFormat
**/
class NumberFormatTest: public CalendarTimeZoneTest {
// IntlTest override
void runIndexedTest( int32_t index, bool_t exec, char* &name, char* par );
public:
/*
* Test the handling of quotes
**/
virtual void TestQuotes(void);
/**
* Test patterns with exponential representation
**/
virtual void TestExponential(void);
/**
* Test handling of patterns with currency symbols
**/
virtual void TestCurrencySign(void);
/**
* Test different format patterns
**/
virtual void TestPatterns(void);
public: // package
// internal utility routine
static UnicodeString& escape(UnicodeString& s);
public:
/**
* Test localized currency patterns.
*/
virtual void TestCurrency(void);
/**
* Do rudimentary testing of parsing.
*/
virtual void TestParse(void);
/**
* Test proper rounding by the format method.
*/
virtual void TestRounding487(void);
// New tests for alphaWorks upgrade
virtual void TestExponent(void);
virtual void TestScientific(void);
void expect(NumberFormat& fmt, const UnicodeString& str, int32_t n);
void expect(NumberFormat& fmt, const Formattable& n,
const UnicodeString& exp);
void expect(NumberFormat* fmt, const Formattable& n,
const UnicodeString& exp, UErrorCode);
void TestPad(void);
void TestPatterns2(void);
void expectPad(DecimalFormat& fmt, const UnicodeString& pat,
int32_t pos);
void expectPad(DecimalFormat& fmt, const UnicodeString& pat,
int32_t pos, int32_t width, UChar pad);
void expectPat(DecimalFormat& fmt, const UnicodeString& exp);
enum { ILLEGAL = -1 };
public: // package
// internal subtest used by TestRounding487
virtual void roundingTest(NumberFormat& nf, double x, int32_t maxFractionDigits, const char* expected);
};
#endif // _NUMBERFORMATTEST_