scuffed-code/icu4c/source/test/intltest/frcoll.h

53 lines
1.5 KiB
C
Raw Normal View History

/********************************************************************
* COPYRIGHT:
* Copyright (c) 1997-2003, International Business Machines Corporation and
* others. All Rights Reserved.
********************************************************************/
1999-08-16 21:50:52 +00:00
/**
* CollationFrenchTest is a third level test class. This tests the locale
* specific tertiary rules. For example, the French secondary sorting on
* accented characters.
*/
#ifndef _FRCOLL
#define _FRCOLL
#include "unicode/utypes.h"
#if !UCONFIG_NO_COLLATION
#include "tscoll.h"
1999-08-16 21:50:52 +00:00
class CollationFrenchTest: public IntlTestCollator {
1999-08-16 21:50:52 +00:00
public:
// 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
CollationFrenchTest();
virtual ~CollationFrenchTest();
void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
1999-08-16 21:50:52 +00:00
// perform tests with strength SECONDARY
void TestSecondary(/* char* par */);
1999-08-16 21:50:52 +00:00
// perform tests with strength TERTIARY
void TestTertiary(/* char* par */);
1999-08-16 21:50:52 +00:00
// perform extra tests
void TestExtra(/* 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 UChar testBugs[][MAX_TOKEN_LEN];
static const Collator::EComparisonResult results[];
1999-08-16 21:50:52 +00:00
static const UChar testAcute[][MAX_TOKEN_LEN];
Collator *myCollation;
};
#endif /* #if !UCONFIG_NO_COLLATION */
1999-08-16 21:50:52 +00:00
#endif