2000-01-15 02:00:06 +00:00
|
|
|
/********************************************************************
|
|
|
|
* COPYRIGHT:
|
2001-03-21 20:09:56 +00:00
|
|
|
* Copyright (c) 1997-2001, International Business Machines Corporation and
|
2000-01-15 02:00:06 +00:00
|
|
|
* others. All Rights Reserved.
|
|
|
|
********************************************************************/
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* CollationDummyTest is a third level test class. This tests creation of
|
|
|
|
* a customized collator object. For example, number 1 to be sorted
|
|
|
|
* equlivalent to word 'one'.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _ALLCOLL
|
|
|
|
#define _ALLCOLL
|
|
|
|
|
1999-12-28 23:57:50 +00:00
|
|
|
#include "unicode/tblcoll.h"
|
2001-08-31 18:02:09 +00:00
|
|
|
#include "tscoll.h"
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2001-08-31 18:02:09 +00:00
|
|
|
class CollationDummyTest: public IntlTestCollator {
|
1999-08-16 21:50:52 +00:00
|
|
|
public:
|
2001-03-30 01:22:03 +00:00
|
|
|
// If this is too small for the test data, just increase it.
|
|
|
|
// Just don't make it too large, otherwise the executable will get too big
|
|
|
|
enum EToken_Len { MAX_TOKEN_LEN = 16 };
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
CollationDummyTest();
|
2000-04-18 17:58:18 +00:00
|
|
|
virtual ~CollationDummyTest();
|
2000-08-23 19:11:16 +00:00
|
|
|
void runIndexedTest( int32_t index, UBool exec, const char* &name, char* /*par = NULL */);
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
// main test method called with different strengths,
|
|
|
|
// tests comparison of custum collation with different strengths
|
|
|
|
void doTest( UnicodeString source, UnicodeString target, Collator::EComparisonResult result);
|
|
|
|
|
|
|
|
// perform test with strength PRIMARY
|
2000-08-23 19:11:16 +00:00
|
|
|
void TestPrimary(/* char* par */);
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
// perform test with strength SECONDARY
|
2000-08-23 19:11:16 +00:00
|
|
|
void TestSecondary(/* char* par */);
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
// perform test with strength tertiary
|
2000-08-23 19:11:16 +00:00
|
|
|
void TestTertiary(/* char* par */);
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
// perform extra tests
|
2000-08-23 19:11:16 +00:00
|
|
|
void TestExtra(/* char* par */);
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2001-03-15 17:55:16 +00:00
|
|
|
void TestIdentical();
|
|
|
|
|
|
|
|
void TestJB581();
|
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
private:
|
|
|
|
static const Collator::EComparisonResult results[];
|
|
|
|
|
|
|
|
RuleBasedCollator *myCollation;
|
2001-03-23 00:57:44 +00:00
|
|
|
|
|
|
|
void doTestVariant(const UnicodeString source, const UnicodeString target, Collator::EComparisonResult result);
|
1999-08-16 21:50:52 +00:00
|
|
|
};
|
|
|
|
#endif
|