summaryrefslogtreecommitdiff
path: root/Build/source/libs/icu/icu-49.1/test/intltest/tsdcfmsy.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/libs/icu/icu-49.1/test/intltest/tsdcfmsy.h')
-rw-r--r--Build/source/libs/icu/icu-49.1/test/intltest/tsdcfmsy.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/Build/source/libs/icu/icu-49.1/test/intltest/tsdcfmsy.h b/Build/source/libs/icu/icu-49.1/test/intltest/tsdcfmsy.h
new file mode 100644
index 00000000000..828d0f434ad
--- /dev/null
+++ b/Build/source/libs/icu/icu-49.1/test/intltest/tsdcfmsy.h
@@ -0,0 +1,35 @@
+/********************************************************************
+ * COPYRIGHT:
+ * Copyright (c) 1997-2001, International Business Machines Corporation and
+ * others. All Rights Reserved.
+ ********************************************************************/
+
+#ifndef _INTLTESTDECIMALFORMATSYMBOLS
+#define _INTLTESTDECIMALFORMATSYMBOLS
+
+#include "unicode/utypes.h"
+
+#if !UCONFIG_NO_FORMATTING
+
+#include "unicode/unistr.h"
+#include "unicode/dcfmtsym.h"
+#include "intltest.h"
+/**
+ * Tests for DecimalFormatSymbols
+ **/
+class IntlTestDecimalFormatSymbols: public IntlTest {
+ void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
+
+private:
+ /**
+ * Test the API of DecimalFormatSymbols; primarily a simple get/set set.
+ */
+ void testSymbols(/*char *par*/);
+
+ /** helper functions**/
+ void Verify(double value, const UnicodeString& pattern, DecimalFormatSymbols sym, const UnicodeString& expected);
+};
+
+#endif /* #if !UCONFIG_NO_FORMATTING */
+
+#endif