summaryrefslogtreecommitdiff
path: root/Build/source/libs/icu/icu-4.6/test/intltest/dcfmtest.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/libs/icu/icu-4.6/test/intltest/dcfmtest.h')
-rw-r--r--Build/source/libs/icu/icu-4.6/test/intltest/dcfmtest.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/Build/source/libs/icu/icu-4.6/test/intltest/dcfmtest.h b/Build/source/libs/icu/icu-4.6/test/intltest/dcfmtest.h
new file mode 100644
index 00000000000..87444b3dfda
--- /dev/null
+++ b/Build/source/libs/icu/icu-4.6/test/intltest/dcfmtest.h
@@ -0,0 +1,53 @@
+/********************************************************************
+ * COPYRIGHT:
+ * Copyright (c) 2010, International Business Machines Corporation and
+ * others. All Rights Reserved.
+ ********************************************************************/
+
+//
+// file: dcfmtest.h
+//
+// Data driven decimal formatter test.
+// Includes testing of both parsing and formatting.
+// Tests are in the text file dcfmtest.txt, in the source/test/testdata/ directory.
+//
+
+#ifndef DCFMTEST_H
+#define DCFMTEST_H
+
+#include "unicode/utypes.h"
+#if !UCONFIG_NO_REGULAR_EXPRESSIONS
+
+#include "intltest.h"
+
+
+class DecimalFormatTest: public IntlTest {
+public:
+
+ DecimalFormatTest();
+ virtual ~DecimalFormatTest();
+
+ virtual void runIndexedTest(int32_t index, UBool exec, const char* &name, char* par = NULL );
+
+ // The following are test functions that are visible from the intltest test framework.
+ virtual void DataDrivenTests();
+
+ // The following functions are internal to the decimal format tests.
+ virtual UChar *ReadAndConvertFile(const char *fileName, int32_t &len, UErrorCode &status);
+ virtual const char *getPath(char buffer[2048], const char *filename);
+ virtual void execParseTest(int32_t lineNum,
+ const UnicodeString &inputText,
+ const UnicodeString &expectedType,
+ const UnicodeString &expectedDecimal,
+ UErrorCode &status);
+
+ virtual void execFormatTest(int32_t lineNum,
+ const UnicodeString &pattern,
+ const UnicodeString &round,
+ const UnicodeString &input,
+ const UnicodeString &expected,
+ UErrorCode &status);
+};
+
+#endif // !UCONFIG_NO_REGULAR_EXPRESSIONS
+#endif