]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/test/intltest/dadrfmt.h
ICU-400.37.tar.gz
[apple/icu.git] / icuSources / test / intltest / dadrfmt.h
diff --git a/icuSources/test/intltest/dadrfmt.h b/icuSources/test/intltest/dadrfmt.h
new file mode 100644 (file)
index 0000000..77f098b
--- /dev/null
@@ -0,0 +1,52 @@
+/********************************************************************
+ * COPYRIGHT: 
+ * Copyright (c) 2007, International Business Machines Corporation and
+ * others. All Rights Reserved.
+ ********************************************************************/
+
+/**
+ * DataDrivenFormatTest is a test class that uses data stored in resource
+ * bundles to perform testing. For more details on data structure, see
+ * source/test/testdata/calendar.txt
+ */
+
+#ifndef _INTLTESTDATADRIVENFORMAT
+#define _INTLTESTDATADRIVENFORMAT
+
+#include "unicode/utypes.h"
+
+#if !UCONFIG_NO_FORMATTING
+
+#include "tsdate.h"
+#include "uvector.h"
+#include "unicode/format.h"
+//#include "fldset.h"
+
+class TestDataModule;
+class TestData;
+class DataMap;
+//class DateTimeStyle;
+
+class DataDrivenFormatTest : public IntlTest {
+    void runIndexedTest(int32_t index, UBool exec, const char* &name,
+            char* par = NULL);
+public:
+    DataDrivenFormatTest();
+    virtual ~DataDrivenFormatTest();
+protected:
+
+    void DataDrivenTest(char *par);
+    void processTest(TestData *testData);
+private:
+    void testConvertDate(TestData *testData, const DataMap *settings, UBool fmt);
+//    void testOps(TestData *testData, const DataMap *settings);
+//    void testConvert(int32_t n, const FormatFieldsSet &fromSet,
+//            Format *fromCal, const FormatFieldsSet &toSet, Format *toCal,
+//            UBool fwd);
+private:
+    TestDataModule *driver;
+};
+
+#endif /* #if !UCONFIG_NO_COLLATION */
+
+#endif