summaryrefslogtreecommitdiff
path: root/Build/source/libs/icu/icu-4.6/test/intltest/ficoll.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/libs/icu/icu-4.6/test/intltest/ficoll.cpp')
-rw-r--r--Build/source/libs/icu/icu-4.6/test/intltest/ficoll.cpp102
1 files changed, 102 insertions, 0 deletions
diff --git a/Build/source/libs/icu/icu-4.6/test/intltest/ficoll.cpp b/Build/source/libs/icu/icu-4.6/test/intltest/ficoll.cpp
new file mode 100644
index 00000000000..957174a1602
--- /dev/null
+++ b/Build/source/libs/icu/icu-4.6/test/intltest/ficoll.cpp
@@ -0,0 +1,102 @@
+/********************************************************************
+ * Copyright (c) 1997-2009, International Business Machines
+ * Corporation and others. All Rights Reserved.
+ ********************************************************************/
+
+#include "unicode/utypes.h"
+
+#if !UCONFIG_NO_COLLATION
+
+#ifndef _COLL
+#include "unicode/coll.h"
+#endif
+
+#ifndef _TBLCOLL
+#include "unicode/tblcoll.h"
+#endif
+
+#ifndef _UNISTR
+#include "unicode/unistr.h"
+#endif
+
+#ifndef _SORTKEY
+#include "unicode/sortkey.h"
+#endif
+
+#ifndef _FICOLL
+#include "ficoll.h"
+#endif
+
+#include "sfwdchit.h"
+
+CollationFinnishTest::CollationFinnishTest()
+: myCollation(0)
+{
+ UErrorCode status = U_ZERO_ERROR;
+ myCollation = Collator::createInstance(Locale("fi", "FI", "", "collation=standard"),status);
+}
+
+CollationFinnishTest::~CollationFinnishTest()
+{
+ delete myCollation;
+}
+
+const UChar CollationFinnishTest::testSourceCases[][CollationFinnishTest::MAX_TOKEN_LEN] = {
+ {0x77, 0x61, 0x74, 0},
+ {0x76, 0x61, 0x74, 0},
+ {0x61, 0x00FC, 0x62, 0x65, 0x63, 0x6b, 0},
+ {0x4c, 0x00E5, 0x76, 0x69, 0},
+ {0x77, 0x61, 0x74, 0}
+};
+
+const UChar CollationFinnishTest::testTargetCases[][CollationFinnishTest::MAX_TOKEN_LEN] = {
+ {0x76, 0x61, 0x74, 0},
+ {0x77, 0x61, 0x79, 0},
+ {0x61, 0x78, 0x62, 0x65, 0x63, 0x6b, 0},
+ {0x4c, 0x00E4, 0x77, 0x65, 0},
+ {0x76, 0x61, 0x74, 0}
+};
+
+const Collator::EComparisonResult CollationFinnishTest::results[] = {
+ Collator::GREATER,
+ Collator::LESS,
+ Collator::GREATER,
+ Collator::LESS,
+ // test primary > 4
+ Collator::EQUAL,
+};
+
+void CollationFinnishTest::TestTertiary(/* char* par */)
+{
+ int32_t i = 0;
+ myCollation->setStrength(Collator::TERTIARY);
+ for (i = 0; i < 4 ; i++) {
+ doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
+ }
+}
+void CollationFinnishTest::TestPrimary(/* char* par */)
+{
+ int32_t i;
+ myCollation->setStrength(Collator::PRIMARY);
+ for (i = 4; i < 5; i++) {
+ doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
+ }
+}
+
+void CollationFinnishTest::runIndexedTest( int32_t index, UBool exec, const char* &name, char* /*par*/ )
+{
+ if (exec) logln("TestSuite CollationFinnishTest: ");
+
+ if((!myCollation) && exec) {
+ dataerrln(__FILE__ " cannot test - failed to create collator.");
+ name = "some test";
+ return;
+ }
+ switch (index) {
+ case 0: name = "TestPrimary"; if (exec) TestPrimary(/* par */); break;
+ case 1: name = "TestTertiary"; if (exec) TestTertiary(/* par */); break;
+ default: name = ""; break;
+ }
+}
+
+#endif /* #if !UCONFIG_NO_COLLATION */