2000-01-15 02:00:06 +00:00
|
|
|
/********************************************************************
|
|
|
|
* COPYRIGHT:
|
2006-10-01 06:45:25 +00:00
|
|
|
* Copyright (c) 1997-2006, 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
|
|
|
|
|
|
|
/**
|
|
|
|
* CollationEnglishTest is a third level test class. This tests the locale
|
|
|
|
* specific primary, secondary and tertiary rules. For example, the ignorable
|
|
|
|
* character '-' in string "black-bird". The en_US locale uses the default
|
|
|
|
* collation rules as its sorting sequence.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _ENCOLL
|
|
|
|
#define _ENCOLL
|
|
|
|
|
2002-09-21 00:43:14 +00:00
|
|
|
#include "unicode/utypes.h"
|
|
|
|
|
|
|
|
#if !UCONFIG_NO_COLLATION
|
|
|
|
|
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 CollationEnglishTest: 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
|
|
|
|
|
|
|
CollationEnglishTest();
|
2000-04-18 17:58:18 +00:00
|
|
|
virtual ~CollationEnglishTest();
|
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
|
|
|
|
|
|
|
// performs 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
|
|
|
|
|
|
|
private:
|
|
|
|
Collator *myCollation;
|
|
|
|
};
|
2002-09-21 00:43:14 +00:00
|
|
|
|
|
|
|
#endif /* #if !UCONFIG_NO_COLLATION */
|
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
#endif
|