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
|
|
|
|
|
|
|
/**
|
|
|
|
* CollationGermanTest is a third level test class. This tests the locale
|
|
|
|
* specific primary, secondary and tertiary rules. For example, o-umlaut
|
|
|
|
* is sorted with expanding char e.
|
|
|
|
*/
|
|
|
|
#ifndef _DECOLL
|
|
|
|
#define _DECOLL
|
|
|
|
|
|
|
|
#ifndef _UTYPES
|
1999-12-28 23:57:50 +00:00
|
|
|
#include "unicode/utypes.h"
|
1999-08-16 21:50:52 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _COLL
|
1999-12-28 23:57:50 +00:00
|
|
|
#include "unicode/coll.h"
|
1999-08-16 21:50:52 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _INTLTEST
|
|
|
|
#include "intltest.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
class CollationGermanTest: public IntlTest {
|
|
|
|
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
|
|
|
|
|
|
|
CollationGermanTest();
|
2000-04-18 17:58:18 +00:00
|
|
|
virtual ~CollationGermanTest();
|
2000-08-14 21:42:36 +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 routine, tests rules specific to germa locale
|
|
|
|
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 tests with strength TERTIARY
|
2000-08-23 19:11:16 +00:00
|
|
|
void TestTertiary(/* char* par */);
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
static const UChar testSourceCases[][MAX_TOKEN_LEN];
|
|
|
|
static const UChar testTargetCases[][MAX_TOKEN_LEN];
|
|
|
|
static const Collator::EComparisonResult results[][2];
|
|
|
|
|
|
|
|
Collator *myCollation;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|